summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.24/example24.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.24/example24.sce')
-rwxr-xr-x1997/CH11/EX11.24/example24.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1997/CH11/EX11.24/example24.sce b/1997/CH11/EX11.24/example24.sce
new file mode 100755
index 000000000..4d162a3e3
--- /dev/null
+++ b/1997/CH11/EX11.24/example24.sce
@@ -0,0 +1,17 @@
+//Chapter-11 example 24
+//=============================================================================
+clc;
+clear;
+//input data
+F = 10*10^9;//MTI radar operating Frequency
+Vo = 3*10^8;//velocity of EM wave in m/s;
+PRF = 2*10^3;//pulse repetitive frequency in hz
+n=1;//for lowest blind speed
+//Calculations
+lamda = Vo/F;//wavelength in m
+BS =(n*lamda/2)*PRF;//blind speed
+
+//output
+mprintf('Lowest Blind Speed is %g m/s',BS);
+
+//==========end of the program=================================================