getMonopulseEstimator
Create monopulse estimator from monopulse feed
Description
creates a estimator
= getMonopulseEstimator(feed
)phased.MonopulseEstimator
System object™, estimator
, from a phased.MonopulseFeed
System object, feed
.
Examples
Create Sum and Difference Channels for URA
After creating sum and difference channels, determine the direction of a target at approximately 24 degrees azimuth and 40 degrees elevation with respect to a 5-by-5 uniform rectangular array.
Create a monopulse feed system based on a URA.
fc = 200e6; c = physconst('LightSpeed'); lambda = c/fc; array = phased.URA('Size',[5 5],'ElementSpacing',lambda/2); feed = phased.MonopulseFeed('SensorArray',array,'OperatingFrequency', ... fc,'Coverage','3D','AngleOutputPort',true);
Create a signal using a steering vector.
steervector = phased.SteeringVector('SensorArray',array);
x = steervector(feed.OperatingFrequency,[24;40]).';
Obtain the sum and difference channels and the estimated target angle.
[sumch,azch,elch,est_dir] = feed(x,[30;35]); disp(est_dir)
24.3705 41.1997
Use a derived phased.MonopulseEstimator
object to also obtain the target angle.
estimator = getMonopulseEstimator(feed); est_dir = estimator(sumch,azch,elch,[30;35])
est_dir = 2×1
24.3705
41.1997
Input Arguments
feed
— Monopulse feed
phased.MonopulseFeed
System object
Monopulse feed, specified as a System object.
Output Arguments
estimator
— Monopulse estimator
phased.MonopulseEstimator
System object
Monopulse estimator, returned as a phased.MonopulseEstimator
System object.
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Version History
Introduced in R2018b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)