www.gusucode.com > phased 案例源码 matlab代码程序 > phased/VCDSpecifyingMaximumRangeHeightParmsExample.m

    %% Display Vertical Coverage Diagram Specifying Maximum Range and Height  
% Display the vertical coverage diagram of an antenna transmitting
% at 100 MHz and placed 20 meters above the ground.
% Set the free-space range to 100 km. Set the maximum plotting range
% to 300 km and the maximum plotting height to 250 km.

% Copyright 2015 The MathWorks, Inc.


freq = 100e6;
ant_height = 20;
rng_fs = 100;
[vcp, vcpangles] = radarvcd(freq,rng_fs,ant_height);
rmax = 300;
hmax = 250;
blakechart(vcp,vcpangles,rmax,hmax);