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 /2528/CH3/EX3.3 | |
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 '2528/CH3/EX3.3')
-rwxr-xr-x | 2528/CH3/EX3.3/Ex3_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2528/CH3/EX3.3/Ex3_3.sce b/2528/CH3/EX3.3/Ex3_3.sce new file mode 100755 index 000000000..532c3d551 --- /dev/null +++ b/2528/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,17 @@ +//Chapter 3
+//page 82
+//Example no 3-3
+clc;
+clear;
+Zin_ol=300*10^3; //in Ohms
+Zout=100; //in Ohms
+Aol=50000;
+Zout_ol=100;
+Asp=100;
+S=Aol/Asp;
+printf("\n S = %.0f",S);//Result
+Zin_sp=S*Zin_ol;
+printf("\n Zin_sp = %.0f Ohm",Zin_sp);//Result
+Zout_sp=Zout_ol/S;
+printf("\n Zout_sp = %.1f Ohm",Zout_sp);//Result
+
|