代码搜索:Chapter
找到约 10,000 项符合「Chapter」的源代码
代码结果 10,000
www.eeworm.com/read/304061/13802177
m chapter5_25.m
num=10; den=[1,7,10]; ts=0.1;
[n_zoh,d_zoh]=c2dm(num,den,ts) ;
tf(n_zoh,d_zoh,ts)
www.eeworm.com/read/304061/13802178
m chapter5_6.m
[u,t]=gensig('square',4,10,0.1);
H=[tf([2 5 1],[1 2 3]);tf([0 1 -1],[1 1 5])];
lsim(H,u,t)
grid on;
title('周期为4秒的方波输出响应')
xlabel('时间')
ylabel('振幅')
www.eeworm.com/read/304061/13802179
m chapter5_1.m
G=tf(4,[1,2,3,4]);Gc=tf([1,-3],[1,3]);H=tf(1,[0.01,1]);
G_o=Gc*G;G_c=feedback(G_o,H);
impulse(G_o);
figure,impulse(G_c);
www.eeworm.com/read/304061/13802180
m chapter5_17.m
den=[1,10,35,50,24]; [rtab,msg]=routh(den)
rtab=1 35 24
10 50 0
30 24 0
42 0 0
24 0 0
www.eeworm.com/read/304061/13802181
m chapter5_16.m
den=[1,10,35,50,24];H=hurwitz(den)
[key,sdet]=posdef(H)
www.eeworm.com/read/304061/13802183
m chapter5_28.m
nc=10; dc=[1,1];
ts=1; w=[0:0.2:10];
bode(nc,dc,w);hold on;
[nz1,dz1]=c2dm(nc,dc,ts);
dbode(nz1,dz2,ts,w); hold off;
www.eeworm.com/read/304061/13802184
m chapter5_11.m
G=tf(1000,conv([1,3,2],[1,5]));
nyquist(G);axis('square')
www.eeworm.com/read/304061/13802185
m chapter5_24.m
A=[0 1 0;-2 -3 0;-1 1 -3];
B=[1 1 2]';
C=[1 0 1];
[Ab,Bb,Cb,Db]=canon(A,B,C,0,'companion');;
[Abar,Bbar,Cbar,T,k] = ctrbf(A,B,C)
[Abar,Bbar,Cbar,T,k] = ctrbf(A,B,C,tol)
[Abar,Bbar,Cbar,T,k] = ob
www.eeworm.com/read/304061/13802186
m chapter5_26.m
num=10; den=[1,7,10]; ts=0.1; i=[0:35]; time=i*ts;
[n_zoh,d_zoh]=c2dm(num,den,ts);
yc=step(num,den,time);
y_zoh=dstep(n_zoh,d_zoh,36);
[xx,yy]=stairs(time,y_zoh);
figure;hold on; plot(time,y