diff options
Diffstat (limited to '2528/CH1/EX1.9/Ex1_9.sce')
-rwxr-xr-x | 2528/CH1/EX1.9/Ex1_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2528/CH1/EX1.9/Ex1_9.sce b/2528/CH1/EX1.9/Ex1_9.sce new file mode 100755 index 000000000..ba819e0a3 --- /dev/null +++ b/2528/CH1/EX1.9/Ex1_9.sce @@ -0,0 +1,11 @@ +// Chapter 1
+//Output power in Watt
+//page 18
+//Example no 1-9
+//Given
+clc;
+P1=12; // in dBw
+Ref=1; // in mW
+P=10^(P1*Ref/10);
+printf("\n The ordinary power gain %.1f mW \n",P); // Result
+
|