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