From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1997/CH11/EX11.33/example33.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 1997/CH11/EX11.33/example33.sce (limited to '1997/CH11/EX11.33/example33.sce') 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); + +//============================================================================== -- cgit