diff options
Diffstat (limited to '728/CH6/EX6.4/Ex6_4.txt')
-rwxr-xr-x | 728/CH6/EX6.4/Ex6_4.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/728/CH6/EX6.4/Ex6_4.txt b/728/CH6/EX6.4/Ex6_4.txt new file mode 100755 index 000000000..ba41420e6 --- /dev/null +++ b/728/CH6/EX6.4/Ex6_4.txt @@ -0,0 +1,14 @@ +//Caption:Determine the powers in the remaining ports
+//Exa:6.4
+clc;
+clear;
+close;
+a_2=0;
+a_3=0;
+a_1=32;//in mW
+b_1=(a_1/2^2)+(a_2/-2)+(a_3/sqrt(2));
+b_2=(a_1/(-2)^2)+(a_2/-2)+(a_3/sqrt(2));
+b_3=(a_1/2)+(a_2/sqrt(2))+(a_3/-sqrt(2));
+disp(b_1,'Power at port1(in mW)=');
+disp(b_2,'Power at port2(in mW) =');
+disp(b_3,'Power at port3(in mW) =');
\ No newline at end of file |