diff options
Diffstat (limited to '1997/CH11/EX11.30/example30.sce')
-rwxr-xr-x | 1997/CH11/EX11.30/example30.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1997/CH11/EX11.30/example30.sce b/1997/CH11/EX11.30/example30.sce new file mode 100755 index 000000000..7d4046ac3 --- /dev/null +++ b/1997/CH11/EX11.30/example30.sce @@ -0,0 +1,14 @@ +//Chapter-11 example 30
+//=============================================================================
+clc;
+clear;
+//input data
+PW = 1*10^-6;//transmitted pulse width in sec
+Vo = 3*10^8;//velocity of EM wave in m/s
+
+//Calculations
+RR = (Vo*PW)/2;
+//output
+mprintf('Range Resolution is %g m\n',RR);
+mprintf(' As the targets are separated by 100m it is possible to resolve');
+//===============end of program================================================
|