diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /29/CH2/EX2.4.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '29/CH2/EX2.4.1')
-rwxr-xr-x | 29/CH2/EX2.4.1/exa2_4_1.jpg | bin | 0 -> 26475 bytes | |||
-rwxr-xr-x | 29/CH2/EX2.4.1/exa2_4_1.sce | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/29/CH2/EX2.4.1/exa2_4_1.jpg b/29/CH2/EX2.4.1/exa2_4_1.jpg Binary files differnew file mode 100755 index 000000000..e90a3bd53 --- /dev/null +++ b/29/CH2/EX2.4.1/exa2_4_1.jpg diff --git a/29/CH2/EX2.4.1/exa2_4_1.sce b/29/CH2/EX2.4.1/exa2_4_1.sce new file mode 100755 index 000000000..55a40d8b8 --- /dev/null +++ b/29/CH2/EX2.4.1/exa2_4_1.sce @@ -0,0 +1,13 @@ +//Caption:pole_zero_Plot
+// example 2.4.1
+//page 19
+//transfer function:G(s)=(1/2((s^2+4)*(1+2.5*s))/((s^2+2)*(1+0.5*s)))
+s=%s;
+G=syslin('c',(1/2*((s^2+4)*(1+2.5*s))/((s^2+2)*(1+0.5*s))));
+disp(G,"G(s)=");
+x=plzr(G)
+xtitle('pole-zero_configuration','Real_part','Img_part');
+// value at s=2
+a=2;
+g=(1/2*((a^2+4)*(1+2.5*a))/((a^2+2)*(1+0.5*a)));
+disp(g,"G(2)=");
|