代码搜索:多时钟域
找到约 10,000 项符合「多时钟域」的源代码
代码结果 10,000
www.eeworm.com/read/372391/9511892
h c6-4.h
// c6-4.h 树的双亲表存储表示
#define MAX_TREE_SIZE 100
struct PTNode
{
TElemType data;
int parent; // 双亲位置域
};
struct PTree
{
PTNode nodes[MAX_TREE_SIZE];
int n; // 结点数
};
www.eeworm.com/read/366495/9811634
h c6-4.h
// c6-4.h 树的双亲表存储表示
#define MAX_TREE_SIZE 100
struct PTNode
{
TElemType data;
int parent; // 双亲位置域
};
struct PTree
{
PTNode nodes[MAX_TREE_SIZE];
int n; // 结点数
};
www.eeworm.com/read/168453/9912542
m freqs_m.m
function [db,mag,pha,w] = freqs_m(b,a,wmax);
% s域频率响应计算的改进版本-
% ------------------------------------------------------------
% [db,mag,pha,w] = freqs_m(b,a,wmax);
% db = [0 to wmax]区间内的相对振幅
%
www.eeworm.com/read/166786/9997778
cpp 建立二叉排序树.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/165890/10047811
cpp 二叉排序树查找.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/165890/10047820
cpp l8.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/165890/10047822
cpp 二叉排序树删除.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/165890/10047840
cpp 二叉排序树插入.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/165890/10047846
cpp 建立二叉排序树.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/361503/10049472
asv lmsimu.asv
%此为一仿真程序
%首先读入权域值参数
function retdouble = LmSimu(ModelNo,NetPara,SimulatePara,InputFun,OutputFun,DataDir)
NNTWARN OFF
%%%% 输入参数赋值开始 %%%%%%%%%%%%%%%%%%%%%%%
% 这部分代码主要是方便用户调试用
% ModelNo='1';
%