- 博客(10)
- 收藏
- 关注
翻译 111
! Traveling Salesman Problem for the cities of Atlanta, Chicago, Cincinnati, Houston, LA, Montreal; SETS: CITY / 1.. 41/: U; ! U( I) = sequence no. of city; LINK( CITY, CITY): DIST, ! Th...
2018-06-30 15:01:43
145
转载 111
#include #include #define Confi double//set Confidence as double #define Vertex int//set Vertex as int #define Weight double//set Weight as double struct Edge{//one edge has three properties-two ve
2017-12-15 21:40:32
124
转载 1
a0=[0 0 0 50]; b1=[1 1]; b2=[1 5]; b3=[1 -2]; b0=conv(b1,conv(b2,b3)); H1=tf(a0,b0); subplot(2,2,1); bode(H1);title('Q1-Bode diagram of open loop'); xlabel('w'); grid on; aa=a0; bb=b0+a0; H=tf(aa,bb);
2017-11-26 11:09:49
133
转载 1
A=[-0.5572,-0.7814;0.7814,0]; B=[1 0]'; C=[1.9691 6.4493]; D=[0]; G=ss(A,B,C,D); G1=tf(G); figure; subplot(2,2,1) step(G1); grid on; title('step response'); xlabel('t');ylabel('c(t)'); subplot(2,2,2)
2017-11-25 14:49:38
130
转载 11
#include #include #include #include #define inputupbound 30 //the inputupbound is 30 typedef struct Node* TreeNode; struct Node{ //creat a linked list int data; //the value of
2017-11-16 09:41:43
139
翻译 111
function sudokuvideo_fn() %%%%%%%%%% Parameters you need to set: %%%%%%%%%%%% % The initial threshold. Threshold at "bwthresh" times darker than the % median in each block. Use the slider bar to adj
2017-11-13 00:19:15
263
转载 1
#include #include #include #include typedef struct Node* TreeNode; struct Node{ //creat a linked list int data; //the value of the node TreeNode right,left; //two childre
2017-11-10 00:45:26
144
翻译 1234
%% construct a network net.nIn=2; %the input layer has 1 ANN net.nHidden=20; %the hidden layer has 10 ANN net.nOut=1; %
2017-10-22 09:09:11
198
翻译 123
%% construct a network. net.nIn=1; %the input layer has 1 ANN. net.nHidden=10; %the hidden has 10 ANN. net.nOut=1; %the
2017-10-22 09:01:33
197
翻译 111
#include #include #include clock_t start, stop; /* clock_t is a built-in type for processor time (ticks) */ double duration; /* records the run time (seconds) of a function once */ double totlet
2017-10-22 08:49:57
165
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人