blob: cb39d403d3074c8bcafcde062b184480802826d7 (
plain)
1
2
3
4
5
6
7
8
|
//page 500
//example 11.2 (assuming SI units)
//given signal is Sx=(N/2)*rect(w/4(%pi)B)
clc;
N=1;B=1;
T=input("enter the value of T");
Rx=(N*B)*(sinc(2*(%pi)*B*T));
disp(+'Watt',Rx,"mean square value of the signal is");
|