Main Content

isPolarizationCapable

Polarization capability

Description

example

flag = isPolarizationCapable(h) returns a logical value, flag, indicating whether the array supports polarization. An array supports polarization if all of its constituent sensor elements support polarization.

Examples

collapse all

Show that a URA array of phased.ShortDipoleAntennaElement short-dipole antenna elements supports polarization.

antenna = phased.ShortDipoleAntennaElement('FrequencyRange',[1e9 10e9]);
array = phased.URA([3,2],'Element',antenna);
isPolarizationCapable(array)
ans = logical
   1

The returned value 1 shows that this array supports polarization.

Input Arguments

collapse all

Uniform rectangular array, specified as phased.URA System object.

Output Arguments

collapse all

Polarization-capability flag, returned as a logical value true if the array supports polarization or false if it does not.

Version History

Introduced in R2013a