summaryrefslogtreecommitdiff
path: root/3871/CH15/EX15.1/Ex15_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH15/EX15.1/Ex15_1.sce')
-rw-r--r--3871/CH15/EX15.1/Ex15_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3871/CH15/EX15.1/Ex15_1.sce b/3871/CH15/EX15.1/Ex15_1.sce
new file mode 100644
index 000000000..51910d2d5
--- /dev/null
+++ b/3871/CH15/EX15.1/Ex15_1.sce
@@ -0,0 +1,14 @@
+//=====================================================================================
+//Chapter 15 example 1
+clc;clear all;
+
+//variable declaration
+Ip = 25; //power level ot the third-order intercept in dBm
+M = -85; //minimum detectable signal in dBm
+
+//calculations
+Rd = (2/3)*(Ip-M);
+
+//result
+mprintf("dynamic range = %3.0f dB",Rd);
+