aesara.tensor.bartlett

Contents

aesara.tensor.bartlett#

aesara.tensor.bartlett(M)[source]#

An instance of this class returns the Bartlett spectral window in the time-domain. 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.

New in version 0.6.

Parameters:

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

Returns:

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:

vector of doubles