blob: 53292e22a399543638753585a40273ed5fd35bb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//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);
|