summaryrefslogtreecommitdiff
path: root/1151/CH7/EX7.6/example_6.sce
blob: 2bec3798ed1230805ef232dfe0a0ba2f38a8ce7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
s=poly(0,'s')
a=(1+4*s);
b=s^2*(1+s)*(1+2*s);
d=a/b;
h=syslin('c',d);
clf();   
nyquist(h)
// add a datatip
ax=gca();
h_h=ax.children($).children(2);//handle on Nyquist curve of h
tip=datatipCreate(h_h,[1.331,0.684]);
datatipSetOrientation(tip,"upper left");