diff options
Diffstat (limited to '1583/CH3/EX3.3/NNID_Ex_3_3.sce')
-rwxr-xr-x | 1583/CH3/EX3.3/NNID_Ex_3_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1583/CH3/EX3.3/NNID_Ex_3_3.sce b/1583/CH3/EX3.3/NNID_Ex_3_3.sce new file mode 100755 index 000000000..9f34dd46d --- /dev/null +++ b/1583/CH3/EX3.3/NNID_Ex_3_3.sce @@ -0,0 +1,13 @@ +clc
+//Chapter 3:Network noise and intermodulation distortion
+//example 3.3 page no 80
+//given
+NF1=2//first stage noise figure
+NF2=6//second stage noise figure
+F1=10^(NF1/10)//first stage noise factor
+F2=10^(NF2/10)//second stage noise factor
+G1=15.9//gain of first stage equivalent to 12dB
+G2=10//gain of second stage equivalent to 10dB
+F=F1+(F2-1)/G1//overall noise factor
+NF=10*log10(F)//noise figure of the two-stage systemm
+printf('the noise figure of the two-stage system is %f dB',round(NF*10)/10)
|