diff options
Diffstat (limited to '1574/CH7/EX7.4/N_Ex_7_4.sce')
-rwxr-xr-x | 1574/CH7/EX7.4/N_Ex_7_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1574/CH7/EX7.4/N_Ex_7_4.sce b/1574/CH7/EX7.4/N_Ex_7_4.sce new file mode 100755 index 000000000..f0baa95d6 --- /dev/null +++ b/1574/CH7/EX7.4/N_Ex_7_4.sce @@ -0,0 +1,16 @@ +clc
+//Chapter8
+//Example7.4, page no 283
+//Given
+Ap1=10, Ap2=10, Ap3=10; // Gain of each states
+F_1=6, F_2=6, F_3=6; //Noise figure of each state
+F1= round(10^(F_1/10)), F2= round(10^(F_2/10)), F3= round(10^(F_3/10)); // approximating the values
+
+F=F1+((F2-1)/Ap1)+((F3-1)/(Ap1*Ap2))
+mprintf('overall noise Figure is: %f',F)
+
+
+
+
+
+
|