summaryrefslogtreecommitdiff
path: root/728/CH6/EX6.4
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.4
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.4')
-rwxr-xr-x728/CH6/EX6.4/Ex6_4.sce14
-rwxr-xr-x728/CH6/EX6.4/Ex6_4.txt14
-rwxr-xr-x728/CH6/EX6.4/Ex6_4_ans.txt13
3 files changed, 41 insertions, 0 deletions
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