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 an array of phased.ShortDipoleAntennaElement antenna elements supports polarization.

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

The returned value of 1 shows that this array supports polarization.

Input Arguments

collapse all

Uniform line array, specified as a phased.ULA 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