blob: c3030c30d7a1507408a2ea11dc03aca3d1b2236b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
close();
//page no 235
//prob no. 7.8
delta_f=400; //Hz
fm=2000; //Hz
B=delta_f/fm; //
disp(B,'The modulation index is');
disp('(For B<=2.5 , the signal is NBFM)');
Bt=2*fm;
mprintf('The transmission bandwidth Bt= %i Hz ',Bt)
|