blob: 1d70df124b5f53935523d4e0277fe6aa825c5a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter-11 example 17
//=============================================================================
clc;
clear;
//input data
D = 200;//azimuth distance between two radars
R = 10*10^3;//Range of radar
//Calculations
BWdB = (D/R)*(180/%pi);//3dB beam width in degrees
//Output
mprintf('Maximum 3db beamwidth of radar resolving the target is %3.3f degrees',BWdB);
//=============end of the program===============================================
|