summaryrefslogtreecommitdiff
path: root/2606/CH8/EX8.23/ex8_23.sce
blob: 34c4231617d3deb066f55d4c6e9f9188b4b49f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//Page Number: 8.23
//Example 8.23
clc;
//Given,
// S=10D-8*(1-(|f|/10D+8));


//(a)Power contenet of output noise
//Bandwidth of 2MHz centered at 50MHz
//Therefore, first limits will be

x0=-51D+6;
x1=-49D+6;
P1=integrate('1+(f/10^8)','f',x0,x1);

//And,second limits will be

x2=49D+6;
x3=51D+6;

P2=integrate('1-(f/10^8)','f',x2,x3);

P=10D-8*(P1+P2);
disp('W',P,'Power content:');