summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.6/example6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.6/example6.sce')
-rwxr-xr-x1997/CH11/EX11.6/example6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1997/CH11/EX11.6/example6.sce b/1997/CH11/EX11.6/example6.sce
new file mode 100755
index 000000000..a717608fa
--- /dev/null
+++ b/1997/CH11/EX11.6/example6.sce
@@ -0,0 +1,15 @@
+//Chapter-11 example 6
+//=============================================================================
+clc;
+clear;
+PW = 2*10^-6;//pulse width in sec
+Vo = 3*10^8;//velocity of EM wave in m/s
+
+//Calculations
+
+RR = (Vo*PW)/2;//Range Resolution in m
+
+//Output
+mprintf('Range Resolution is %g m',RR);
+
+//=============end of program==================================================