From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 728/CH6/EX6.4/Ex6_4.sce | 14 ++++++++++++++ 728/CH6/EX6.4/Ex6_4.txt | 14 ++++++++++++++ 728/CH6/EX6.4/Ex6_4_ans.txt | 13 +++++++++++++ 3 files changed, 41 insertions(+) create mode 100755 728/CH6/EX6.4/Ex6_4.sce create mode 100755 728/CH6/EX6.4/Ex6_4.txt create mode 100755 728/CH6/EX6.4/Ex6_4_ans.txt (limited to '728/CH6/EX6.4') diff --git a/728/CH6/EX6.4/Ex6_4.sce b/728/CH6/EX6.4/Ex6_4.sce new file mode 100755 index 000000000..ba41420e6 --- /dev/null +++ b/728/CH6/EX6.4/Ex6_4.sce @@ -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 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 diff --git a/728/CH6/EX6.4/Ex6_4_ans.txt b/728/CH6/EX6.4/Ex6_4_ans.txt new file mode 100755 index 000000000..fb0c83db7 --- /dev/null +++ b/728/CH6/EX6.4/Ex6_4_ans.txt @@ -0,0 +1,13 @@ + + Power at port1(in mW)= + + 8. + + Power at port2(in mW) = + + 8. + + Power at port3(in mW) = + + 16. + \ No newline at end of file -- cgit