diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1574/CH7/EX7.4/N_Ex_7_4.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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)
+
+
+
+
+
+
|