summaryrefslogtreecommitdiff
path: root/2414/CH12/EX12.14/Ex12_14.sce
blob: 5c83bbf387eae338e281663fa428ab07075ad548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc;
close();
clear();
//page no 418
//prob no. 12.14
//Absolute gains
G1=20;
G2=15;
G3=12;
//Temp in K
Te1=100;
Te2=200;
Te3=300;
Te=Te1+Te2/G1+Te3/G1/G2

mprintf('Noise Temperature ,Te=%.0f K\n',Te);