blob: 7e15e5cf95043833fe63ad4613157e962ddfac29 (
plain)
1
2
3
4
5
6
7
8
|
clc;
//page no 263
//prob no. 8.7.1
//AM radio Tx=10A when unmodulated & 12A when modulated
I=12;Ic=10;
//Determination of modulation index
m=sqrt(2*(((I/Ic)^2)-1));
disp(m,'The modulation index is');
|