summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.46/example46.sce
blob: 02e8bc1f6171e8d58edb98e9b8cab771d6982dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Chapter-11 example 46
//=============================================================================
clc;
clear;
//Given data
Runamb      = 300*10^3;     // unambiguous range in m
Vo          = 3*10^8;       // Vel. of EM wave in m/s

//Calculations

PRF         = Vo/(2*Runamb); // Pulse repetitive freq.

//Output
mprintf('Pulse repetitive frequency = %g Hz',PRF);
//==============================================================================