summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.46/example46.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.46/example46.sce')
-rwxr-xr-x1997/CH11/EX11.46/example46.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1997/CH11/EX11.46/example46.sce b/1997/CH11/EX11.46/example46.sce
new file mode 100755
index 000000000..02e8bc1f6
--- /dev/null
+++ b/1997/CH11/EX11.46/example46.sce
@@ -0,0 +1,15 @@
+//Chapter-11 example 46
+//=============================================================================
+clc;
+clear;
+//Given data
+Runamb = 300*10^3; // unambiguous range in m
+Vo = 3*10^8; // Vel. of EM wave in m/s
+
+//Calculations
+
+PRF = Vo/(2*Runamb); // Pulse repetitive freq.
+
+//Output
+mprintf('Pulse repetitive frequency = %g Hz',PRF);
+//==============================================================================