blob: 8c6f98743325d80ab74f9bea5fee5017070fc04a (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
//page no 260
//prob no. 8.5.1
//A carrier with fc=10MHz & vp=10V modulated with fm=5kHz & Vm=6V
fc=10*10^6;//Carrier freq
fm=5*10^3;//Modullating freq
vp=10;vm=6;
//Determination of modulation index
m=vm/vp;
disp(m,'The modulation index is');
|