blob: 8159eaad917f65f224adc9acc5a7da75db038545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter-11 example 25
//=============================================================================
clc;
clear;
//input data
PRF = 2*10^3;//pulse repetitive frequency in Hz
Vo = 3*10^8;//velocity of EM wave in m/s
mprintf('f1 = first operating frequency of MTI Radar\n');
mprintf(' f2 = second operating frequency of MTI Radar\n');
mprintf(' 2nd blind speed of 1st radar = (2Vo/2f1)*PRF\n 5th blind speed of 2nd radar = (5Vo/2f2)*PRF\n');
mprintf(' PRF(V0/f1) = (5/2)*(Vo/f2)*PRF\n');
mprintf(' (f2/f1) = 5/2\n');
//==============end of the program=============================================
|