summaryrefslogtreecommitdiff
path: root/992/CH1/EX1.6/EX1_6.txt
blob: 74bfa436c87706daa8bcfbc05a68c60140596b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Caption:Program to equivalent noise resistance.
//Exa:1.6
clc;
clear;
close;
//Given:
b_w=3000;//bandwidth in hertz
T=300;//temperature in kelvin
k=1.36*10^-23;//constant
Vn=300*10^-6//ohms
R=Vn*Vn/(4*k*T*b_w);
printf("\n\n\t Equivalent Noise Resistance = %f ohm ",R);