summaryrefslogtreecommitdiff
path: root/1409/CH2/EX2.6/2_6.sce
blob: a972f55a55185ba10253389f96ebfa3c056a62c0 (plain)
1
2
3
4
5
6
7
8
9
clc;
//page no: 2-14
//Example-2.6
//Given Total antenna current is 5A, and modulation index is 0.6
Itotal=5;
u=0.6;
//Itotal=Ic*sqrt(1+(u^2/2));
Ic=Itotal/sqrt(1+(u^2/2));
disp(+'A',Ic,'Antenna current when only carrier is sent is ');