summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.33/example33.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1997/CH11/EX11.33/example33.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1997/CH11/EX11.33/example33.sce')
-rwxr-xr-x1997/CH11/EX11.33/example33.sce19
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);
+
+//==============================================================================