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 /3281/CH4/EX4.22/ex4_22.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 '3281/CH4/EX4.22/ex4_22.sce')
-rwxr-xr-x | 3281/CH4/EX4.22/ex4_22.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3281/CH4/EX4.22/ex4_22.sce b/3281/CH4/EX4.22/ex4_22.sce new file mode 100755 index 000000000..c4c6e615f --- /dev/null +++ b/3281/CH4/EX4.22/ex4_22.sce @@ -0,0 +1,21 @@ +//Page Number: 240
+//Example 4.22
+clc;
+//Given
+I=30; //dB
+Il=2; //dB
+p=1.3;
+
+//Elelments
+T=(p-1)/(p+1);
+S11=T;
+S22=T;
+S33=T;
+S12=10^(-Il/20);
+S13=10^(-I/20);
+S21=S13;
+S32=S13;
+S23=S12;
+S31=S23;
+s=[S11 S21 S31;S12 S22 S32;S13 S23 S33];
+disp(s,'Scattering matrix:');
|