代码搜索:Infinity

找到约 1,499 项符合「Infinity」的源代码

代码结果 1,499
www.eeworm.com/read/147096/12584393

m hinfdes1.m

% A function for use with the h-infinity Control Toolbox demonstration % Copyright (c) 1990-94 by The MathWorks, Inc. format short e clear ae be ce de; sys = mksys(a,b,c,d); [aw1,bw1,cw1,dw1] =
www.eeworm.com/read/202643/15377355

h vex.h

#include #include "primDlg.h" #include "afx.h" #ifndef _VEX_H #define INFINITY INT_MAX //最大值:无穷大 #define MAX_VERTEX_NUM 20 //最大顶点个数 #define MAX 10
www.eeworm.com/read/113181/15467414

cpp wan.cpp

#include "stdio.h" #include #include "conio.h" #include "Graphics.h" const double INFINITY = 1e10; const double ESP = 1e-5; const int MAX_N= 1000; struct Point { int x, y
www.eeworm.com/read/101557/15826654

m hinfdes1.m

% A function for use with the h-infinity Control Toolbox demonstration % Copyright (c) 1990-94 by The MathWorks, Inc. format short e clear ae be ce de; sys = mksys(a,b,c,d); [aw1,bw1,cw1,dw1] =
www.eeworm.com/read/391742/8382310

cpp 数的遍历.cpp

#include //#include #define INFINITY 32767 #define MAX_VEX 20 //最大顶点个数 #define QUEUE_SIZE (MAX_VEX+1) //队列长度 using namespace std; bool *visited; //访问标志数组 //图的邻接矩阵存储
www.eeworm.com/read/362558/9992583

h adjlist.h

/*邻接表存储结构的形式化说明如下:*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define NULL 0 #define Ok 1 #define MAX_VERTEX_NUM 20 /*最多顶点个数
www.eeworm.com/read/273978/10891766

cpp text1.cpp

//? 最小生成树Prim算法 #include #define INFINITY 1000 #define MAXN 10 typedef struct { int vnum; int arcs[MAXN][MAXN]; } graph; void creat_graph(graph *p) { int i,j,n,v1,v2,w;
www.eeworm.com/read/460712/7105614

m chap8_7design.m

%H Infinity Controller Design based on LMI for Double Inverted Pendulum clear all; close all; A=[0,0,0,1.0,0,0; 0,0,0,0,1.0,0; 0,0,0,0,0,-1.0; 0,-3.7864,0.2009,-4.5480,0.0037,-0.0017;
www.eeworm.com/read/439271/7713144

m chap8_7design.m

%H Infinity Controller Design based on LMI for Double Inverted Pendulum clear all; close all; A=[0,0,0,1.0,0,0; 0,0,0,0,1.0,0; 0,0,0,0,0,-1.0; 0,-3.7864,0.2009,-4.5480,0.0037,-0.0017;
www.eeworm.com/read/195829/5107115

h adjlist.h

/*邻接表存储结构的形式化说明如下:*/ #define INFINITY 32768 /*表示极大值,即∞*/ #define True 1 #define False 0 #define Error -1 #define NULL 0 #define Ok 1 #define MAX_VERTEX_NUM 20 /*最多顶点个数