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 --- 2951/CH3/EX3.4/ex3_4.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 2951/CH3/EX3.4/ex3_4.sce (limited to '2951/CH3/EX3.4') diff --git a/2951/CH3/EX3.4/ex3_4.sce b/2951/CH3/EX3.4/ex3_4.sce new file mode 100755 index 000000000..1a4e9bfcd --- /dev/null +++ b/2951/CH3/EX3.4/ex3_4.sce @@ -0,0 +1,23 @@ +clc; +clear; +m1=0.3; +m2=0.4; +m3=0.5; +m4=0.6; //modulation indices +Pc=150;//power of carrier in Watts + +mt=sqrt(m1^2+m2^2+m3^2+m4^2); //total modulation index + +Pt=Pc*(1+mt^2/2);//Total transmitted power in Watts + +Ps=(mt^2)*Pc/4; //Sideband Power in Watts + +disp(mt,"Total Modulation index"); + +disp(Pt,"Total Transmitted Power (in W)"); + +//change in answer as compared to book ,due to approximation error.. +disp(Ps,"Sideband Power(in W)") + + + -- cgit