summaryrefslogtreecommitdiff
path: root/1409/CH5/EX5.7/5_7.sce
blob: ec311d5213f68daab9d14a65cc4478cc592a7b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clc;
//page no 5-13
//Example 5.7
//Given carrier frequency is 50.4MHz and th highest freuency reached is 50.405 MHZ
Hf=50.405*10^6;//in Hz
fc=50.4*10^6;
fd=(Hf-fc)*10^(-3);//in kHz
disp(+'kHz',fd,'Frequency deviation= ');
Cs=2*fd;
disp(+'kHz',Cs,'Carrier swing= ');
Lf=[fc-(fd*10^(3))]*10^(-6);
disp(+'MHz',Lf,'Lowest frequency attained= ');