diff options
Diffstat (limited to '1997/CH11/EX11.33/example33.sce')
-rwxr-xr-x | 1997/CH11/EX11.33/example33.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1997/CH11/EX11.33/example33.sce b/1997/CH11/EX11.33/example33.sce new file mode 100755 index 000000000..3a6f0bc2f --- /dev/null +++ b/1997/CH11/EX11.33/example33.sce @@ -0,0 +1,19 @@ +//Chapter-11 example 33
+//=============================================================================
+clc;
+clear;
+//input data
+F = 9; //Noise figure in dB
+BW = 2*10^6; // Bandwidth
+To = 300; // Temperature in kelvin
+K = 1.38*10^-23; // Boltzman constant
+
+//Calculations
+
+F1 = 10^(F/10) //antilog calculation
+Pmin = (K*To*BW)*(F1-1);//minimum receivable power
+
+//Output
+mprintf('Minimum receivable power Pmin = %e W',Pmin);
+
+//==============================================================================
|