blob: 9a8b9e2e3d056fc757686c79b1aefef80aeef86e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Exa:3.4
clc;
clear;
close;
//Given:
w=10;//in KHz
wm=2;//in KHz
mf=w/wm;
Bw=wm*8*2;//for 5 highest coefficient of J in Bessel function is 8
printf("\n modulation index = %f ",mf);
printf("\n Band width required = %f KHz",Bw);
|