blob: c47429c02de9770efc82e3d256b6547df7186c01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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=======================================================
|