summaryrefslogtreecommitdiff
path: root/728/CH6/EX6.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /728/CH6/EX6.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '728/CH6/EX6.7')
-rwxr-xr-x728/CH6/EX6.7/Ex6_7.sce13
-rwxr-xr-x728/CH6/EX6.7/Ex6_7.txt13
-rwxr-xr-x728/CH6/EX6.7/Ex6_7_ans.txt6
3 files changed, 32 insertions, 0 deletions
diff --git a/728/CH6/EX6.7/Ex6_7.sce b/728/CH6/EX6.7/Ex6_7.sce
new file mode 100755
index 000000000..79ab7d265
--- /dev/null
+++ b/728/CH6/EX6.7/Ex6_7.sce
@@ -0,0 +1,13 @@
+//Caption:Calculate the scattering matrix.
+//Exa:6.7
+clc;
+clear;
+close;
+In_loss=0.5;//in dB
+S_21=10^(-In_loss/20);
+Isolation=30;//in dB
+S_12=10^(-Isolation/20);
+S_11=0;
+S_22=0;
+S=[S_11,S_12;S_21,S_22];
+disp(S,'Scattering matrix ='); \ No newline at end of file
diff --git a/728/CH6/EX6.7/Ex6_7.txt b/728/CH6/EX6.7/Ex6_7.txt
new file mode 100755
index 000000000..79ab7d265
--- /dev/null
+++ b/728/CH6/EX6.7/Ex6_7.txt
@@ -0,0 +1,13 @@
+//Caption:Calculate the scattering matrix.
+//Exa:6.7
+clc;
+clear;
+close;
+In_loss=0.5;//in dB
+S_21=10^(-In_loss/20);
+Isolation=30;//in dB
+S_12=10^(-Isolation/20);
+S_11=0;
+S_22=0;
+S=[S_11,S_12;S_21,S_22];
+disp(S,'Scattering matrix ='); \ No newline at end of file
diff --git a/728/CH6/EX6.7/Ex6_7_ans.txt b/728/CH6/EX6.7/Ex6_7_ans.txt
new file mode 100755
index 000000000..e67ea55a5
--- /dev/null
+++ b/728/CH6/EX6.7/Ex6_7_ans.txt
@@ -0,0 +1,6 @@
+
+ Scattering matrix =
+
+ 0. 0.0316228
+ 0.9440609 0.
+ \ No newline at end of file