summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.59/example59.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.59/example59.sce')
-rwxr-xr-x1997/CH11/EX11.59/example59.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1997/CH11/EX11.59/example59.sce b/1997/CH11/EX11.59/example59.sce
new file mode 100755
index 000000000..37608fe25
--- /dev/null
+++ b/1997/CH11/EX11.59/example59.sce
@@ -0,0 +1,15 @@
+//Chapter-11 example 59
+//=============================================================================
+clc;
+clear;
+//Given data
+lamda = 3*10^-2; //Wavelength in m
+PRF = 1000; //Pulse Repetitive frequency in Hz
+n = 1' // n value for lowest blind speed
+
+//Calculations
+Vb = (n*lamda/2)*PRF; //Blind speed of the Radar in m/s
+
+//Output
+mprintf('Lowet blind speed = %d m/s',Vb);
+//==============================================================================