summaryrefslogtreecommitdiff
path: root/992/CH1/EX1.1/EX1_1.txt
blob: 1f53e4983d4163be6d5c7ec53f95eed471eaff30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Caption:Program to find noise voltage.
//Exa:1.1
clc;
clear;
close;
//Given:
b_w=6000000;//bandwidth in hertz
T=290;//temperature in kelvin
k=1.36*10^-23;//constant
R=500//ohms
V_n=sqrt(4*k*T*b_w*R);
printf("\n\n\t noise voltage = %f v ",V_n);