Contenido principal

phased.URA.getTaper

Array element tapers

Description

wts = getTaper(array) returns the tapers, wts, applied to each element of the phased uniform rectangular array (URA), array. Tapers are often referred to as weights.

example

Examples

collapse all

Construct a 5-by-2 element URA with a Taylor window taper along each column. Then, draw the array showing the element taper shading.

taper = taylorwin(5);
array = phased.URA([5,2],Taper=[taper,taper]);
w = getTaper(array)
w = 10×1

    0.5181
    1.2029
    1.5581
    1.2029
    0.5181
    0.5181
    1.2029
    1.5581
    1.2029
    0.5181

viewArray(array,ShowTaper=true)

Figure contains an axes object. The hidden axes object with xlabel x axis (Az 0 El 0) -->, ylabel y axis --> contains 7 objects of type scatter, line, text.

Input Arguments

collapse all

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

Output Arguments

collapse all

Array element tapers returned as an N-by-1, complex-valued vector, where N is the number of elements in the array.

Version History

Introduced in R2011a