Main Content

isPolarizationCapable

System object: phased.CustomMicrophoneElement
Namespace: phased

Polarization capability

Syntax

flag = isPolarizationCapable(h)

Description

flag = isPolarizationCapable(h) returns a Boolean value, flag, indicating whether the phased.CustomMicrophoneElement supports polarization. An element supports polarization if it can create or respond to polarized fields. This microphone element, as with all microphone elements, does not support polarization.

Input Arguments

expand all

Custom microphone element specified as a phased.CustomMicrophoneElement System object™.

Output Arguments

expand all

Polarization-capability returned as a Boolean value true if the microphone element supports polarization or false if it does not. Because the phased.CustomMicrophoneElement object does not support polarization, flag is always returned as false.

Examples

expand all

Show that the phased.CustomMicrophoneElement microphone element does not support polarization.

microphone = phased.CustomMicrophoneElement;
isPolarizationCapable(microphone)
ans = logical
   0

The returned value 0 shows that the custom microphone element does not support polarization.