diff options
Diffstat (limited to '1409/CH2/EX2.12/2_12.sce')
-rw-r--r-- | 1409/CH2/EX2.12/2_12.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1409/CH2/EX2.12/2_12.sce b/1409/CH2/EX2.12/2_12.sce new file mode 100644 index 000000000..903043dfe --- /dev/null +++ b/1409/CH2/EX2.12/2_12.sce @@ -0,0 +1,9 @@ +clc;
+//Page no:2-26
+//Example-2.12
+//Given modulation percentage is 75 and power is 10kW
+//we know that ptotal=pc*(1+(u^2/2))
+ptotal=10;
+u=0.75;
+pc=ptotal/(1+(u^2/2));
+disp(+'kW',pc,'Carrier power is ');
|