summaryrefslogtreecommitdiff
path: root/2219/CH9/EX9.4/Ex9_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH9/EX9.4/Ex9_4.sce')
-rwxr-xr-x2219/CH9/EX9.4/Ex9_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2219/CH9/EX9.4/Ex9_4.sce b/2219/CH9/EX9.4/Ex9_4.sce
new file mode 100755
index 000000000..1b1967445
--- /dev/null
+++ b/2219/CH9/EX9.4/Ex9_4.sce
@@ -0,0 +1,15 @@
+// Chapter 9 example 4
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given Data
+PW_tx = 10^-6; // Transmitted pulse width
+Rx_PW = 10^-6; // Received pulse width
+c = 3*10^8; // velocity of EM waves in m/s
+
+// Calculations
+RR = (c*Rx_PW)/2; // Range Resolution in m
+
+// output
+mprintf('This Radar can resolve upto an inter target separation in range of %d m\n Therefore,given radar will be able to resolve the targets',RR);
+//------------------------------------------------------------------------------