cunumeric.bartlett#

cunumeric.bartlett(M: int) ndarray#

Return the Bartlett window.

The Bartlett window is very similar to a triangular window, except that the end points are at zero. It is often used in signal processing for tapering a signal, without generating too much ripple in the frequency domain.

Parameters:

M (int) – Number of points in the output window. If zero or less, an empty array is returned.

Returns:

out – The triangular window, with the maximum value normalized to one (the value one appears only if the number of samples is odd), with the first and last samples equal to zero.

Return type:

ndarray

See also

numpy.bartlett

Availability:

Multiple GPUs, Multiple CPUs