jax.numpy.hanning

Contents

jax.numpy.hanning#

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

Return the Hanning window.

LAX-backend implementation of numpy.hanning().

Original docstring below.

The Hanning window is a taper formed by using a weighted cosine.

Parameters:

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

Returns:

out – The window, with the maximum value normalized to one (the value one appears only if M is odd).

Return type:

ndarray, shape(M,)

References