diff options
Diffstat (limited to '1151/CH7/EX7.7')
-rwxr-xr-x | 1151/CH7/EX7.7/example_7.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1151/CH7/EX7.7/example_7.sce b/1151/CH7/EX7.7/example_7.sce new file mode 100755 index 000000000..a334bc29a --- /dev/null +++ b/1151/CH7/EX7.7/example_7.sce @@ -0,0 +1,8 @@ +s=poly(0,'s')
+h=syslin('c',1/(s*(1+2*s)*(1+s)));
+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");
|