You are on page 1of 1

0001 //Nyquist curve

0002 s=poly(0,'s')
0003 h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01));
0004 h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
0005 clf(); nyquist(h1)
0006 // add a datatip
0007 ax=gca();
0008 h_h=ax.children($).children(2);//handle on Nyquist curve of h
0009 tip=datatipCreate(h_h,[1.331,0.684]);
0010 datatipSetOrientation(tip,"upper left");

You might also like