diff options
Diffstat (limited to '1997/CH11/EX11.41/example41.sce')
-rwxr-xr-x | 1997/CH11/EX11.41/example41.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1997/CH11/EX11.41/example41.sce b/1997/CH11/EX11.41/example41.sce new file mode 100755 index 000000000..25603696d --- /dev/null +++ b/1997/CH11/EX11.41/example41.sce @@ -0,0 +1,18 @@ +//Chapter-11 example 41
+//=============================================================================
+clc;
+clear;
+//Given data
+
+Vo = 3*10^8; // vel of EM wave m/s;
+t = 10*10^-6; // time taken to rx echo
+
+//Calculations
+
+R = (Vo*t)/2; // Distance of the Target
+
+//output
+
+mprintf('Distance of the target is %3.2f Km',R/1000);
+
+//==============================================================================
|