diff options
Diffstat (limited to '1151/CH7/EX7.6')
-rwxr-xr-x | 1151/CH7/EX7.6/example_6.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1151/CH7/EX7.6/example_6.sce b/1151/CH7/EX7.6/example_6.sce new file mode 100755 index 000000000..2bec3798e --- /dev/null +++ b/1151/CH7/EX7.6/example_6.sce @@ -0,0 +1,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");
|