jax.numpy.bartlett

Contents

jax.numpy.bartlett#

jax.numpy.bartlett(M)[source]#

Return the Bartlett window.

LAX-backend implementation of numpy.bartlett().

Original docstring below.

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:

array

References