blob: 70154c5b32aa622dfdbb653f766e175ffd4712b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Chapter-11 example 47
//=============================================================================
clc;
clear;
//Given data
Vo = 3*10^8; // vel of EM wave m/s;
PRF = 1000; // pulse repetitive freq. in Hz
PW = 10^-6; // Pulse width in sec
//Calculations
DC = PRF*PW // Duty cycle
Runamb = Vo/(2*PRF); // Distance of the Target
//output
mprintf('Duty cycle = %g\n Maximum unambiguous range = %g Km',DC,Runamb/1000 );
//==============================================================================
|