代码搜索结果
找到约 10,000 项符合
6 的代码
example6_6.m
A=[-2.8 ,-1.5377 ,0, 1.4;1.5377,0 ,0,0;1,2.6601,-4.8,-4.2136;0,0,4.2136,0];
B=[4,2,2,0;1,0,1,0]';
C=[1,1,0,3;0,2,0,1];
D=[0,-2;-2,0];
figure(1)
impulse(A,B,C,D)
grid on;
title('单位冲激响应')
xlabel
例6-6.m
clear all %初始化(给定环半径,电流,图形)
mu0=4*pi*1e-7; %真空导磁率(T*m/A)
I0=5.0;
Rh=1; %这两个常数不影响结果
C0=mu0/(4*pi)*I 0; %归并常数
NGx=21;NGy=21; %设定观测点网格数
x=l
mian6_6.c
#include
#include
#include
#include "lcm1602.h"
#include "12c887.h"
#include "key.h"
#include "ds18b20.h"
#define isd_data1 XBYTE[0xdfff]
#define isd_data2
bo6-6.cpp
// bo6-6.cpp 二叉树的三叉链表存储(存储结构由c6-7.h定义)的基本操作(21个)
Status InitBiTree(BiPTree &T)
{ // 操作结果: 构造空二叉树T
T=NULL;
return OK;
}
void DestroyBiTree(BiPTree &T)
{ // 初始条件: 二叉树T存在。操作结果: 销毁二叉树
main6-6.cpp
// main6-6.cpp 检验bo6-6.cpp的主程序
#define CHAR // 字符型
//#define INT // 整型(二者选一)
#include"c1.h"
#ifdef CHAR
typedef char TElemType;
TElemType Nil=' '; // 字符型以空格符为空
#endif
#ifdef INT
c6-6.h
// c6-6.h 二叉树的三叉链表存储表示
typedef struct BiTPNode
{
TElemType data;
BiTPNode *parent,*lchild,*rchild; // 双亲、左右孩子指针
}BiTPNode,*BiPTree;
exercise6_6.java
import javax.swing.JOptionPane;
public class Exercise6_6 {
static String output = "";
/** Main method */
public static void main(String[] args) {
// Prompt the user to enter year
Strin