blob: a023bc98d05ecb6f9800eaf056cdc2852b75a429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clear
//Given
Pc=500 //watts
//Calculation
Ps=(1/2.0)*(Pc)
Pt=Pc+Ps
//Result
printf("\n (i) sideband power is %0.3f W",Ps)
printf("\n (ii) power of AM wave is %0.3f W",Pt)
|