diff options
Diffstat (limited to '2048/CH7/EX7.2/nyquist_ex1.sce')
-rwxr-xr-x | 2048/CH7/EX7.2/nyquist_ex1.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/2048/CH7/EX7.2/nyquist_ex1.sce b/2048/CH7/EX7.2/nyquist_ex1.sce new file mode 100755 index 000000000..0028b9f6e --- /dev/null +++ b/2048/CH7/EX7.2/nyquist_ex1.sce @@ -0,0 +1,7 @@ +// Procedure to draw the Nyquist plot, as discussed in Example 7.2 on page 250.
+// 7.2
+
+exec('tf.sci',-1);
+
+H = tf(1,[1 -1 0],-1);
+nyquist(H,0.1,0.5)
|