blob: b1b493e6d0c6323546ecba6911dc4396c94f5229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter-9 example 7
//=============================================================================
clc;
clear;
//input data
Da = 5;//diameter of parabolic antenna in m
F = 5*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
//Calculations
lamda = Vo/F;//wavelength
R = (2*Da*Da)/lamda;//min distance b/w antennas
//Output
mprintf('Minimum distance Required is %g m',R);
//=============end of the program==============================================
|