Hi!
Programs On Nyquist Plot :
1 -
G(s) =
s^2 + 5
--------------
s^2 + 7 s + 10
Editor -
Programs On Nyquist Plot :
1 -
G(s) =
s^2 + 5
--------------
s^2 + 7 s + 10
Editor -
clc
clear all
close all
n=[1 0 5];
d=[1 7 10];
nyquist(n,d);
grid;
2 -
Editor
clc
clear all
close all
k1=1.1;
k2=2.5;
n1=[k1 k1];
d=conv([1
0.5],[1 -2]);
sys1=tf(n1,d);
n2=[k2 k2];
sys2=tf(n2,d);
nyquist(sys1,sys2);
legend('sys1','sys2')
0 comments:
Post a Comment