代码搜索:FrankLin
找到约 1,224 项符合「FrankLin」的源代码
代码结果 1,224
www.eeworm.com/read/479910/6683158
m fig3_19.m
% Figure 3.19 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% fig3_19.m
clf;
num=[2 1];
den=[1 3 2];
axis ('square')
pzmap(num,den)
grid;
www.eeworm.com/read/479910/6683164
m fig6_31.m
% Fig. 6.31 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
clear all;
close all;
num=[1 1];
den=conv([1 0],[0.1 -1]);
w=logspace(-3,3,100);
[re,im]=nyqu
www.eeworm.com/read/479910/6683166
m fig3_39.m
% Figure 3.39 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
%
clf;
k=7.5;
numCL=[k k];
denCL=[1 5 k-6 k];
t=0:.05:12;
y1=step(numCL,denCL,t)
www.eeworm.com/read/479910/6683179
m fig3_46.m
% Figure 3.46 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% Example 3.28
clf;
t=[0 .1 .2 .3 .4 .5 1 1.5 2 2.5 3 4 10];
y=[0 .005 .034 .
www.eeworm.com/read/479910/6683195
m fig3_34.m
% Figure 3.34 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
clf;
a=1;
zeta=.5;
k=1/zeta;
den=[1 1 1];
num=[-k/a 1];
t=0:.1:10;
yT=step(nu
www.eeworm.com/read/479910/6683201
m fig5_13.m
% Fig. 5.13 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
np=[1 1];
dp=[1 4 0 0];
rlocus(np,dp)
axis([-6 2 -3 3])
grid on
Title('Root locus for Figure 5.13')
www.eeworm.com/read/479910/6683202
m fig5_04.m
% Fig. 5.4 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
clf
hold off
n4=[1 1];
d4=conv([1 5 0],[1 4 8]);
pzmap(n4,d4)
axis([-6 2 -3 3])
title('Fig.5.4 Measu
www.eeworm.com/read/479910/6683208
m fig8_04.m
% Fig. 8.4 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
clear all;
close all;
zgrid('new')
axis('square')
plot([-1 1],[0 0])
plot([0 0],[-1 1])
title
www.eeworm.com/read/479910/6683209
m fig3_33.m
% Figure 3.33 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
clf;
a=1;
zeta=.5;
k=1/zeta;
den=[1 1 1];
num=[k/a 1];
t=0:.1:10;
yT=step(num,d
www.eeworm.com/read/479910/6683210
m fig5_23.m
% Fig. 5.23 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
% script to generate Fig. 5.23
clf
n=1;
d=[1 1 0];
n1=[1 2 ];
sys1=tf(n1,d);
rlocus(sys1,':' )
h