diff options
Diffstat (limited to '2219/CH10/EX10.18/Ex10_18.sce')
-rwxr-xr-x | 2219/CH10/EX10.18/Ex10_18.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2219/CH10/EX10.18/Ex10_18.sce b/2219/CH10/EX10.18/Ex10_18.sce new file mode 100755 index 000000000..bf4ecc307 --- /dev/null +++ b/2219/CH10/EX10.18/Ex10_18.sce @@ -0,0 +1,14 @@ +// Chapter 10 example 18
+//------------------------------------------------------------------------------
+clc;
+clear;
+//Given data
+B = 10^6; // Bandwidth in Mhz
+c = 3*10^8; // speed of light in m/s
+
+// Calculations
+RR = c/(2*B); // Range Resolution in m
+
+// Output
+mprintf('Range Resolution = %d m\n',RR);
+//------------------------------------------------------------------------------
|