summaryrefslogtreecommitdiff
path: root/1997/CH2/EX2.6/example6.sce
blob: 89793b6ad75bbf9b79e6e7a4feb79bc4f493a780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Chapter-2 example 2.6
//=============================================================================
clc;
clear;
PW = 2*10^-6;       //pulse width in sec
PRF=800;            //pulse repetition frequency in KHz
V0=3*10^8;          //velocity in m/s
//Calculations
Ru=V0/(2*PRF);      //unambigious range in mts
RR=(V0*PW)/2;       //Range resolution in m
//output
mprintf('unambigious range is %g Km\n Range resolution is %g m',Ru/1000,RR);