summaryrefslogtreecommitdiff
path: root/2219/CH9/EX9.5/Ex9_5.sce
blob: 89f8b36d965f4635eb0ca7edd8382417a77396bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Chapter 9 example 5
//------------------------------------------------------------------------------
clc;
clear;
// Given Data
CRR     = 100;      // Cross range resolution in m
R       = 3000;     // radial range

// Calculations
// CRR  = (R*theta3)*(%pi/180);
theta3  = (180*CRR)/(%pi*R)         // 3 dB beamwidth

// Output
mprintf('3 dB beamwidth = %3.2f°',theta3);
//------------------------------------------------------------------------------