blob: f831f195c1e18bc5b2a1f9b7bdf4c16963200845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//Chapter-11 example 37
//=============================================================================
clc;
clear;
//Given data
lamda = 6*10^-2; //Wavelength in m
PRF = 800; //Pulse Repetitive frequency in Hz
n1 = 1 ; //n value for first blind speed
n2 = 2 ; //n value for first blind speed
n3 = 3 ; //n value for first blind speed
//Calculations
//Vb = (n*lamda/2)*PRF; Blind speed of the Radar
//For n = 1
Vb1 = (n1*lamda/2)*PRF; //Blind speed of the Radar in m/s
Vb2 = (n2*lamda/2)*PRF; //Blind speed of the Radar in m/s
Vb3 = (n3*lamda/2)*PRF; //Blind speed of the Radar in m/s
//multiply by 18/5 to convert from m/s to kmph
//Output
mprintf('The lowest Blind speeds are %3.1f, %3.2f and %3.2f Km/hr',Vb1*(18/5),Vb2*(18/5),Vb3*(18/5));
//=============end of program==================================================
|