Main Content

phased.WidebandCollector

Wideband signal collector

Description

The phased.WidebandCollector System object™ implements a wideband signal collector. A collector converts incident wideband wave fields arriving from specified directions into signals to be further processed. Wave fields are incident on antenna and microphone elements, sensor arrays, or subarrays. The object collects signals in one of two ways controlled by the Wavefront Wavefront property.

  • If the Wavefront property is set to 'Plane', the collected signals at each element or subarray are the coherent sum of all incident plane wave fields sampled at each array element or subarray.

  • If the Wavefront property is set to 'Unspecified', the collected signals are formed from an independent field incident on each individual sensor element.

You can use this object to

  • model arriving signals as polarized or non-polarized fields depending upon whether the element or array supports polarization and the value of the Polarization property. Using polarization, you can receive a signal as a polarized electromagnetic field, or receive two independent signals using orthogonal polarization directions.

  • model acoustic fields by using nonpolarized microphone and sonar transducer array elements and by setting the Polarization to 'None'. You must also set the PropagationSpeed to a value appropriate for the medium.

  • collect fields at subarrays created by the phased.ReplicatedSubarray and phased.PartitionedArray objects. You can steer all subarrays in the same direction using the steering angle argument, STEERANG, or steer each subarray in a different direction using the subarray element weights argument, WS. You cannot set the Wavefront property to 'Unspecified' for subarrays.

To collect arriving signals at the elements or arrays:

  1. Create the phased.WidebandCollector 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

example

collector = phased.WidebandCollector creates a wideband signal collector object, collector, with default property values.

collector = phased.WidebandCollector(Name,Value) creates a wideband signal collector with each property Name set to a specified Value. You can specify additional name-value pair arguments in any order as (Name1,Value1,...,NameN,ValueN). Enclose each property name in single quotes.

Example: collector = phased.WidebandCollector('Sensor',phased.URA,'CarrierFrequency',300e6) sets the sensor array to a uniform rectangular array (URA) with default URA property values. The beamformer assumes a carrier frequency of 300 MHz.

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 element or sensor array, specified as a System object belonging to Phased Array System Toolbox. A sensor array can contain subarrays.

Example: phased.URA

Signal propagation speed, specified as a positive scalar. Units are in meters per second. The default propagation speed is the value returned by physconst('LightSpeed'). See physconst for more information.

Example: 3e8

Data Types: double

Signal sample rate, specified as a positive real-valued scalar. Units are in hertz.

Example: 1e6

Data Types: double

Set this property to true to indicate the input signal is demodulated at a carrier frequency.

Data Types: logical

Carrier frequency, specified as a positive real-valued scalar. Units are in hertz.

Example: 1e6

Data Types: double

Number of processing subbands, specified as a positive integer.

Example: 128

Data Types: double

Sensor gain measure, specified as 'dB' or 'dBi'.

  • When you set this property to 'dB', the input signal power is scaled by the sensor power pattern (in dB) at the corresponding direction and then combined.

  • When you set this property to 'dBi', the input signal power is scaled by the directivity pattern (in dBi) at the corresponding direction and then combined. This option is useful when you want to compare results with the values predicted by the radar equation that uses dBi to specify the antenna gain. The computation using the 'dBi' option is expensive as it requires an integration over all directions to compute the total radiated power of the sensor.

Data Types: char

The type of incoming wavefront, specified as 'Plane' or 'Unspecified':

  • 'Plane' — input signals are multiple plane waves impinging on the entire array. Each plane wave is received by all collecting elements.

  • 'Unspecified' — collected signals are independent fields incident on individual sensor elements. If the Sensor property is an array that contains subarrays, you cannot set the Wavefront property to 'Unspecified'.

Data Types: char

Polarization configuration, specified as 'None', 'Combined', or 'Dual'. When you set this property to 'None', the incident fields are considered scalar fields. When you set this property to 'Combined', the incident fields are polarized and represent a single arriving signal whose polarization reflects the sensor's inherent polarization. When you set this property to 'Dual', the H and V polarization components of the fields are independent signals.

Example: 'Dual'

Data Types: char

Enable weights input, specified as false or true. When true, use the object input argument W to specify weights. Weights are applied to individual array elements (or at the subarray level when subarrays are supported).

Data Types: logical

Usage

Description

example

Y = collector(X,ANG) collects the signals, X, arriving from the directions specified by ANG. Y contains the collected signals.

Y = collector(X,ANG,LAXES) also specifies LAXES as the local coordinate system axes directions. To use this syntax, set the property to 'Combined'.

[YH,YV] = collector(X,ANG,LAXES) returns an H-polarization component of the field, YH, and a V-polarization component, YV. To use this syntax, set the Polarization property to 'Dual'.

[___] = collector(___,W) also specifies W as array element or subarray weights. To use this syntax, set the WeightsInputPort property to true.

[___] = collector(___,STEERANG) also specifies STEERANG as the subarray steering angle. To use this syntax, set the Sensor property to an array that supports subarrays and set the SubarraySteering property of that array to either 'Phase' or 'Time'.

[___] = collector(___,WS) also specifies WS as the weights applied to each element within each subarray. To use this syntax, set the Sensor property to an array that supports subarrays and set the SubarraySteering of that array to 'Custom'.

Input Arguments

expand all

Arriving signals, specified as a complex-valued M-by-L matrix or complex-valued 1-by-L cell array of structures. M is the number of signal samples and L is the number of arrival angles. This argument represents the arriving fields.

  • If the Polarization property value is set to 'None', X is an M-by-L matrix.

  • If the Polarization property value is set to 'Combined' or 'Dual', X is a 1-by-L cell array of structures. Each cell corresponds to a separate arriving signal. Each struct contains three column vectors containing the X, Y, and Z components of the polarized fields defined with respect to the global coordinate system.

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.

Dependencies

To enable this argument, set the Polarization property to 'None' or 'Combined'.

Data Types: double
Complex Number Support: Yes

Arrival directions of signals, specified as a real-valued 2-by-L matrix. Each column specifies an arrival direction in the form [AzimuthAngle;ElevationAngle]. The azimuth angle must lie between –180° and 180°, inclusive. The elevation angle must lie between –90° and 90°, inclusive. When the Wavefront property is false, the number of angles must equal the number of array elements, N. Units are in degrees.

Example: [30,20;45,0]

Data Types: double

Local coordinate system, specified as a real-valued 3-by-3 orthogonal matrix. The matrix columns specify the local coordinate system's orthonormal x, y, and z axes with respect to the global coordinate system.

Example: rotx(30)

Dependencies

To enable this argument, set the Polarization property to 'Combined' or 'Dual'.

Data Types: double

Element or subarray weights, specified as a complex-valued N-by-1 column vector where N is the number of array elements (or subarrays when the array supports subarrays).

Dependencies

To enable this argument, set the WeightsInputPort property to true.

Data Types: double
Complex Number Support: Yes

Subarray element weights, specified as complex-valued NSE-by-N matrix or 1-by-N cell array where N is the number of subarrays. These weights are applied to the individual elements within a subarray.

Subarray element weights

Sensor ArraySubarray weights
phased.ReplicatedSubarray

All subarrays have the same dimensions and sizes. Then, the subarray weights form an NSE-by-N matrix. NSE is the number of elements in each subarray and N is the number of subarrays. Each column of WS specifies the weights for the corresponding subarray.

phased.PartitionedArray

Subarrays may not have the same dimensions and sizes. In this case, you can specify subarray weights as

  • an NSE-by-N matrix, where NSE is now the number of elements in the largest subarray. The first Q entries in each column are the element weights for the subarray where Q is the number of elements in the subarray.

  • a 1-by-N cell array. Each cell contains a column vector of weights for the corresponding subarray. The column vectors have lengths equal to the number of elements in the corresponding subarray.

Dependencies

To enable this argument, set the Sensor property to an array that contains subarrays and set the SubarraySteering property of the array to 'Custom'.

Data Types: double
Complex Number Support: Yes

Subarray steering angle, specified as a length-2 column vector. The vector has the form [azimuthAngle;elevationAngle]. The azimuth angle must be between –180° and 180°, inclusive. The elevation angle must be between –90° and 90°, inclusive. Units are in degrees.

Example: [20;15]

Dependencies

To enable this argument, set the Sensor property to an array that supports subarrays and set the SubarraySteering property of that array to either 'Phase' or 'Time'

Data Types: double

Output Arguments

expand all

Collected signal, returned as a complex-valued M-by-N matrix. M is the length of the input signal. N is the number of array elements (or subarrays when subarrays are supported). Each column corresponds to the signal collected by the corresponding array element (or corresponding subarrays when subarrays are supported).

Dependencies

To enable this argument, set the Polarization property to 'None' or 'Combined'.

Data Types: double
Complex Number Support: Yes

Collected horizontal polarization signal, returned as a complex-valued M-by-N matrix. M is the length of the input signal. N is the number of array elements (or subarrays when subarrays are supported). Each column corresponds to the signal collected by the corresponding array element (or corresponding subarrays when subarrays are supported).

Dependencies

To enable this argument, set the Polarization property to 'Dual'.

Data Types: double
Complex Number Support: Yes

Collected horizontal polarization signal, returned as a complex-valued M-by-N matrix. M is the length of the input signal. N is the number of array elements (or subarrays when subarrays are supported). Each column corresponds to the signal collected by the corresponding array element (or corresponding subarrays when subarrays are supported).

Dependencies

To enable this argument, set the Polarization property to 'Dual'.

Data Types: double
Complex Number Support: Yes

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

Use the phased.WidebandCollector System object™ to construct a signal arriving at a single isotropic antenna from 10° azimuth and 30° elevation.

antenna = phased.IsotropicAntennaElement;
collector = phased.WidebandCollector('Sensor',antenna);
x = [1;0;-1];
incidentAngle = [10;30];
y = collector(x,incidentAngle);
disp(y)
   1.0000 + 0.0000i
   0.0000 + 0.0000i
  -1.0000 - 0.0000i

Use the wideband collector to construct the signal impinging upon a 5-element ULA of isotropic antennas from 10 degrees azimuth and 30 degrees elevation.

array = phased.ULA('NumElements',5);
collector = phased.WidebandCollector('Sensor',array);
x = [1;1;1];
incidentAngle = [10;30];
y = collector(x,incidentAngle);
disp(y)
  -0.9997 + 0.0102i  -0.0051 - 0.9999i   1.0000 + 0.0000i  -0.0051 + 1.0001i  -1.0002 - 0.0102i
  -0.9999 + 0.0102i  -0.0051 - 1.0000i   1.0000 + 0.0000i  -0.0051 + 1.0000i  -0.9999 - 0.0102i
  -1.0002 + 0.0102i  -0.0051 - 1.0001i   1.0000 - 0.0000i  -0.0051 + 0.9999i  -0.9997 - 0.0102i

Collect three signals incoming into a 3-element array of isotropic antenna elements. Each antenna collects a separate input signal from a separate direction.

array = phased.ULA('NumElements',3);
collector = phased.WidebandCollector('Sensor',array,...
    'Wavefront','Unspecified');
rng default
x = rand(10,3);
incidentAngles = [10 20 45; 0 5 2];
y = collector(x,incidentAngles);
disp(y)
   0.8147 + 0.0000i   0.1576 + 0.0000i   0.6557 - 0.0000i
   0.9058 + 0.0000i   0.9706 + 0.0000i   0.0357 + 0.0000i
   0.1270 - 0.0000i   0.9572 + 0.0000i   0.8491 - 0.0000i
   0.9134 - 0.0000i   0.4854 + 0.0000i   0.9340 - 0.0000i
   0.6324 + 0.0000i   0.8003 + 0.0000i   0.6787 - 0.0000i
   0.0975 - 0.0000i   0.1419 + 0.0000i   0.7577 - 0.0000i
   0.2785 + 0.0000i   0.4218 - 0.0000i   0.7431 - 0.0000i
   0.5469 - 0.0000i   0.9157 - 0.0000i   0.3922 - 0.0000i
   0.9575 + 0.0000i   0.7922 + 0.0000i   0.6555 + 0.0000i
   0.9649 + 0.0000i   0.9595 + 0.0000i   0.1712 - 0.0000i

More About

expand all

Algorithms

If the Wavefront property value is 'Plane', phased.WidebandCollector does the following for each plane wave signal:

  1. Decomposes the signal into multiple subbands.

  2. Uses the phase approximation of the time delays across collecting elements in the far field for each subband.

  3. Regroups the collected signals in all the subbands to form the output signal.

If the Wavefront property value is 'Unspecified', the object collects each channel independently.

For further details, see [1].

References

[1] Van Trees, H. Optimum Array Processing. New York: Wiley-Interscience, 2002.

Extended Capabilities

Version History

Introduced in R2011a