blob: 37608fe253f08d4327c37e5cc2cd2b8e8f8261b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter-11 example 59
//=============================================================================
clc;
clear;
//Given data
lamda = 3*10^-2; //Wavelength in m
PRF = 1000; //Pulse Repetitive frequency in Hz
n = 1' // n value for lowest blind speed
//Calculations
Vb = (n*lamda/2)*PRF; //Blind speed of the Radar in m/s
//Output
mprintf('Lowet blind speed = %d m/s',Vb);
//==============================================================================
|