summaryrefslogtreecommitdiff
path: root/1409/CH5/EX5.6/5_6.sce
blob: f6651c15eeb5e99236d09865595d79ac4c8823ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc;
//page no 5-12
//Example 5.6
//Given carrier frequency is 93.2MHz and frequency of modulated wave is 5kHz and the frequency deviation is 40kHz
fc=93.2*10^6;//in Hz
fm=5*10^3;//in Hz
fd=40*10^3;
cs=2*fd*10^(-3);
disp(+'kHz',cs,'Carrier swing is ');
Hf=(fc+fd)*10^(-6);
disp(+'MHz',Hf,'The highest frequency reached is ');
Lf=(fc-fd)*10^(-6);
disp(+'MHz',Lf,'The lowest frequency reached is ');
beta1=fd/fm;
disp(beta1,'Modulation index is');