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 /728/CH6/EX6.6/Ex6_6.txt | |
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 '728/CH6/EX6.6/Ex6_6.txt')
-rwxr-xr-x | 728/CH6/EX6.6/Ex6_6.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/728/CH6/EX6.6/Ex6_6.txt b/728/CH6/EX6.6/Ex6_6.txt new file mode 100755 index 000000000..94e5b1c20 --- /dev/null +++ b/728/CH6/EX6.6/Ex6_6.txt @@ -0,0 +1,20 @@ +//Caption:Determine the powers reflected at port 3 & power divisions at other ports.
+//Exa:6.6
+clc;
+clear;
+close;
+p_1=0.5;
+p_2=0.6;
+p_4=0.8;
+b_1=0.6566;
+b_2=0.7576;
+b_3=0.6536;
+b_4=0.00797;
+a_1=p_1*b_1;
+a_2=p_2*b_2;
+a_3=1;//in Watts
+a_4=p_4*b_4;
+disp(b_1^2,'Power at port 1(in W)=');
+disp(b_2^2,'Power at port 2(in W)=');
+disp(b_3^2,'Power at port 3(in W)=');
+disp(b_4^2,'Power at port 4(in W)=');
\ No newline at end of file |