blob: bae94e4561374f87cbc73b0034dbbae60ef9c768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Caption:Program to determine output band and minimum required bandwidth.
//Exa:9.1
clc;
clear;
close;
//Given:
Fm=80;//in MHz
Fc=60;//in MHz
Fb=20;//in Mbps
MI=(Fm-Fc)/Fb;
printf("\n Modulation index is = %f",MI);
printf("\n Minimum required bandwidth = %fMHz",Fc);
printf("\n Baud rate = %fMegabaud",Fb);
|