blob: 7d4046ac331a7b2c4cb9808e7f76490f960afec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter-11 example 30
//=============================================================================
clc;
clear;
//input data
PW = 1*10^-6;//transmitted pulse width in sec
Vo = 3*10^8;//velocity of EM wave in m/s
//Calculations
RR = (Vo*PW)/2;
//output
mprintf('Range Resolution is %g m\n',RR);
mprintf(' As the targets are separated by 100m it is possible to resolve');
//===============end of program================================================
|