blob: 8b68e9a9a28406866531cb69dcdf1b9e5295b529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//Chapter3: Modulation
//Example3.13 page no 148
//Given
Pt=5e3//carrier power for 95% modulation
Ma=0.95
Pc=Pt/(1+((Ma^2)/2))//carrier power
Ma=0.2//average modulation by speech signal
Psb=(Ma^2)*Pc/2//the power n the sideband
Pout=Psb/2// because one of the side band is suppressed
mprintf('The power output is: %f W',Pout)
|