diff options
Diffstat (limited to '2951/CH3/EX3.1/ex3_1.sce')
-rwxr-xr-x | 2951/CH3/EX3.1/ex3_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2951/CH3/EX3.1/ex3_1.sce b/2951/CH3/EX3.1/ex3_1.sce new file mode 100755 index 000000000..29917f0c0 --- /dev/null +++ b/2951/CH3/EX3.1/ex3_1.sce @@ -0,0 +1,15 @@ +clc;
+clear;
+Vm=3;// amplitude of message signal in V
+Vc=5;//amplitude of carrier signal in V
+m=Vm/Vc; //modulation index
+disp("modulation index");
+disp(m,"=");
+disp("Upper Sideband Frequency(in MHz)");
+Fm=4;//Frequency in KHz
+Fc=5;//Frequency in MHz
+disp(Fc+(Fm*10^(-3)),"=");
+disp("Lower Sideband Frequency(in MHz)");
+disp(Fc-(Fm*10^(-3)),"=");
+disp("AMplitude of each Sideband(in V)");
+disp(m*Vc/2,"=");
|