diff options
Diffstat (limited to '1409/CH2/EX2.14/2_14.sce')
-rw-r--r-- | 1409/CH2/EX2.14/2_14.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1409/CH2/EX2.14/2_14.sce b/1409/CH2/EX2.14/2_14.sce new file mode 100644 index 000000000..b2de0d29a --- /dev/null +++ b/1409/CH2/EX2.14/2_14.sce @@ -0,0 +1,12 @@ +clc;
+//page no:2-27
+//Example:2.14
+//Given carrier power is 360W and two modulation percentages are 55 and 65
+u1=0.55;
+u2=0.65;
+ut=sqrt(u1^2+u2^2);
+disp(ut,'ut=');
+pc=300;
+Ut=0.85;
+Psb=(pc*[Ut^2])/2;
+disp(+'W',Psb,'Total sideband power is');
|