diff options
Diffstat (limited to '1997/CH11/EX11.14/example14.sce')
-rwxr-xr-x | 1997/CH11/EX11.14/example14.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1997/CH11/EX11.14/example14.sce b/1997/CH11/EX11.14/example14.sce new file mode 100755 index 000000000..c47429c02 --- /dev/null +++ b/1997/CH11/EX11.14/example14.sce @@ -0,0 +1,15 @@ +//Chapter-11 example 14
+//=============================================================================
+clc;
+clear;
+//input data
+Rmax = 500*10^3;//maximum Range of Radar in ms
+Vo = 3*10^8;//Velocity of EM wave in m/s
+//Calculations
+
+PRF = Vo/(2*Rmax);//pulse repetitive frequency in Hz
+
+//output
+mprintf('Pulse repetive frequency required for the range of 500km is %g Hz',PRF);
+
+//========end of program=======================================================
|