blob: b900bfb845beb86eb805bafd3a06ca03b25c03c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Tested on Windows 7 Ultimate 32-bit
//Chapter 12 Modulation and Demodulation Pg no. 381
clear;
clc;
//Given
Pc=10D3;//carrier wave power in watts
m=0.75;//depth of modulation
e=0.65;//efficiency of modulator
//Solution
Ps=0.5*m^2*Pc;//total sideband power in watts
Pa=Ps/e;//required audio power in watts
printf("Required audio power P = %.3f kW",Pa/10^3);
|