summaryrefslogtreecommitdiff
path: root/2219/CH9/EX9.10/Ex9_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH9/EX9.10/Ex9_10.sce')
-rwxr-xr-x2219/CH9/EX9.10/Ex9_10.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2219/CH9/EX9.10/Ex9_10.sce b/2219/CH9/EX9.10/Ex9_10.sce
new file mode 100755
index 000000000..4fcb94fc2
--- /dev/null
+++ b/2219/CH9/EX9.10/Ex9_10.sce
@@ -0,0 +1,18 @@
+// Chapter 9 example 10
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given Data
+f = 10^9; // CW radar waveform freq.
+fm = 100; // modulation freq. in Hz
+MaxfD = 500; // max freq deviation in Hz
+c = 3*10^8; // vel. of EM waves in m/s
+
+// Calculations
+Mf = MaxfD/fm // Modulation index
+BW = 2*(Mf + 1)*fm // Bandwidth
+RR = c/(2*BW); // Range Resolution in m
+
+// Output
+mprintf('Bandwidth = %d Hz\n Range Resolution = %d Km',BW,RR/1000);
+//------------------------------------------------------------------------------