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 /1523/CH10/EX10.36/ex10_36.sce | |
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 '1523/CH10/EX10.36/ex10_36.sce')
-rwxr-xr-x | 1523/CH10/EX10.36/ex10_36.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1523/CH10/EX10.36/ex10_36.sce b/1523/CH10/EX10.36/ex10_36.sce new file mode 100755 index 000000000..b6f694d9c --- /dev/null +++ b/1523/CH10/EX10.36/ex10_36.sce @@ -0,0 +1,11 @@ +// Network Functions : example 10.36 : (pg 10.35 & 10.36)
+m=((5*sqrt(17))/(sqrt(20)*4));
+a=90;
+w=(atand(4)+atand(4/3)-(a)-atand(4/2));
+printf("\nF(s) = (s+1)(s+3)/s(s+2))");
+printf("\nAt s=j4");
+//vmag = vector magnitudes
+printf("\nPrduct of vmag from all zeros to j4/ Product of vmag from all poles to j4");
+printf("\n =%.2f",m);
+printf("\nphi(w)= atand(4)+atand(4/3)-atand(4/0)-atand(4/2)");
+printf("\n = %.2f degrees",w);
\ No newline at end of file |