Contenuto principale

phased.SumDifferenceMonopulseTracker

Sum and difference monopulse for ULA

Description

The SumDifferenceMonopulseTracker System object™ implements a sum and difference monopulse algorithm on a uniform linear array (ULA).

To compute the response for each element in the array for specified directions:

  1. Create the phased.SumDifferenceMonopulseTracker object and set its properties.

  2. Call the object with arguments, as if it were a function.

To learn more about how System objects work, see What Are System Objects?

Creation

Description

tracker = phased.SumDifferenceMonopulseTracker creates a tracker System object, tracker. The object uses sum and difference monopulse algorithms on a uniform linear array (ULA).

example

tracker = phased.SumDifferenceMonopulseTracker(Name=Value) creates a ULA monopulse tracker System object, tracker, with each specified property Name set to the specified Value. You can specify additional name-value pair arguments in any order as (Name1 = Value1, … ,NameN = ValueN).

example

Properties

expand all

Unless otherwise indicated, properties are nontunable, which means you cannot change their values after calling the object. Objects lock when you call them, and the release function unlocks them.

If a property is tunable, you can change its value at any time.

For more information on changing property values, see System Design in MATLAB Using System Objects.

Sensor array, specified as a phased.ULA System object with property ArrayAxis = "y".

Example: phased.ULA(ArrayAxis="y")

Signal propagation speed, specified as a real-valued positive scalar. Units are in meters per second. The default propagation speed is the value returned by physconst("LightSpeed").

Example: 3e8

Data Types: single | double

Operating frequency, specified as a positive scalar. Units are in Hz.

Example: 1e9

Data Types: double

The number of bits used to quantize the phase shift component of beamformer or steering vector weights, specified as a non-negative integer. A value of zero indicates that no quantization is performed.

Example: 5

Data Types: single | double

Usage

Description

ESTANG = tracker(X,STANG) estimates the incoming direction ESTANG of the input signal, X, based on an initial guess of the direction.

Note

The object performs an initialization the first time the object is executed. This initialization locks nontunable properties and input specifications, such as dimensions, complexity, and data type of the input data. If you change a nontunable property or an input specification, the System object issues an error. To change nontunable properties or inputs, you must first call the release method to unlock the object.

Input Arguments

expand all

Input signal, specified as a real-valued length-L row vector, where the number of columns corresponds to number of channels.

The size of the first dimension of the input matrix can vary to simulate a changing signal length. A size change can occur, for example, in the case of a pulse waveform with variable pulse repetition frequency.

Data Types: single | double

Initial estimate of the direction, specified as a scalar that represents the broadside angle in degrees. A typical initial guess is the current steering angle. The value of STANG is between –90° and 90°. The angle is defined in the array's local coordinate system. For details regarding the local coordinate system of the ULA, type phased.ULA.coordinateSystemInfo.

Data Types: single | double

Output Arguments

expand all

Estimate incoming direction, returned as a scalar that represents the broadside angle in degrees. The value is between –90° and 90°. The angle is defined in the array's local coordinate system.

Data Types: single | double

Object Functions

To use an object function, specify the System object as the first input argument. For example, to release system resources of a System object named obj, use this syntax:

release(obj)

expand all

stepRun System object algorithm
releaseRelease resources and allow changes to System object property values and input characteristics
resetReset internal states of System object

Examples

collapse all

Determine the direction of a target at a 60.1° broadside angle to a ULA starting with an approximate direction of 60°

array = phased.ULA('NumElements',4);
steervec = phased.SteeringVector('SensorArray',array);
tracker = phased.SumDifferenceMonopulseTracker('SensorArray',array);
x = steervec(tracker.OperatingFrequency,60.1).';
est_dir = tracker(x,60)
est_dir = 
60.1000

Algorithms

expand all

References

[1] Seliktar, Y. Space-Time Adaptive Monopulse Processing. Ph.D. Thesis. Georgia Institute of Technology, Atlanta, 1998.

[2] Rhodes, D. Introduction to Monopulse. Dedham, MA: Artech House, 1980.

Extended Capabilities

expand all

Version History

Introduced in R2011a