summaryrefslogtreecommitdiff
path: root/992/CH3/EX3.4/ex3_4.txt
blob: 6db1158088920c553f6762a70b5b09560091d82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Caption:Program to Bandwidth required.
//Exa:3.4
clc;
clear;
close;
//Given:
w=10;//in KHz
wm=2;//in KHz
mf=w/wm;
Bw=wm*8*2;
printf("\n modulation index = %f ",mf);
printf("\n Band width required = %f KHz",Bw);