blob: e4838c09c1191cf7c0b282645d5435972669a37b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//Chapter3: Modulation
//Example3.28, page no 177
//Given
R=1//Antenna Resistance assumed to be 1 ohm for ease of calculation
Ic=10.8// current with no modulation
Pc=Ic^2*R//power with no modulation
It=12.15//modulated current
Pt=It^2*R// modulated power
ma=(sqrt(2*(((It/Ic)^2)-1)))//modulation depth)
mprintf('Depth of modulation:%f %c',round(1000*ma)/10,'%');
|