blob: a717608face524cefbeed1f317b5d860fe1e7155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter-11 example 6
//=============================================================================
clc;
clear;
PW = 2*10^-6;//pulse width in sec
Vo = 3*10^8;//velocity of EM wave in m/s
//Calculations
RR = (Vo*PW)/2;//Range Resolution in m
//Output
mprintf('Range Resolution is %g m',RR);
//=============end of program==================================================
|