blob: 3b569672bc4e64a79498cd4b5a4f7e755fe4191f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//fiber optic communications by joseph c. palais
//example 11.8
//given
//OS=Windows XP sp3
//Scilab version 5.4.1
clc
clear all
//given
TA=300//Ambient temperature in Kelvin
T=454//noise temperature in Kelvin
//to find
F=1+(T/TA)//Noise figure
Fdb=10*log10(F)//Noise figure in dB
mprintf("Noise figure =%f db",Fdb)
|