diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /257/CH11/EX11.3/example_11_3.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '257/CH11/EX11.3/example_11_3.sce')
-rw-r--r-- | 257/CH11/EX11.3/example_11_3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/257/CH11/EX11.3/example_11_3.sce b/257/CH11/EX11.3/example_11_3.sce new file mode 100644 index 000000000..ab5e52ebf --- /dev/null +++ b/257/CH11/EX11.3/example_11_3.sce @@ -0,0 +1,21 @@ +//there is no pole or zero at the origin as the slope is initially 0
+
+wc1=1
+y1=poly([1 1 ],'s','coeff');
+
+// mag at wc2 is -20 and wc1 is 0. hence wc1 and wc2 are a decade apart.
+
+wc2=10
+y2=poly([1 1/wc2 ],'s','coeff');
+disp(y2)
+
+// mag at wc2 is -20 and at w=1000 is 0. hence wc2 and wc3 are decade apart.
+
+wc3=100
+y3=poly([1 1/wc3 ],'s','coeff');
+
+wc4=1000 //given
+y4=poly([1 1/wc4 ],'s','coeff');
+
+TF= (y2*y3)/(y1*y4)
+disp(TF,"transfer function = ")
|