summaryrefslogtreecommitdiff
path: root/2219/CH10/EX10.11/Ex10_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH10/EX10.11/Ex10_11.sce')
-rwxr-xr-x2219/CH10/EX10.11/Ex10_11.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2219/CH10/EX10.11/Ex10_11.sce b/2219/CH10/EX10.11/Ex10_11.sce
new file mode 100755
index 000000000..d752f67e7
--- /dev/null
+++ b/2219/CH10/EX10.11/Ex10_11.sce
@@ -0,0 +1,16 @@
+// Chapter 10 example 11
+//------------------------------------------------------------------------------
+clc;
+clear;
+//Given data
+R = 100; // Range in kms
+PRR = 10*10^3; // pulse rep. rate in Hz
+c = 3*10^5; // vel. in km/s
+
+// Calculations
+PRI = 1/PRR // pulse rep. interval
+Ra = modulo(R,(c*PRI/2)); // apparent range in km
+
+// Output
+mprintf('Apparent Range = %d Km\n',Ra);
+//------------------------------------------------------------------------------