jax.numpy.kaiser#

jax.numpy.kaiser(M, beta)[source]#

Return a Kaiser window of size M.

JAX implementation of numpy.kaiser().

Parameters:
Returns:

An array of size M containing the Kaiser window.

Return type:

Array

Examples

>>> with jnp.printoptions(precision=2, suppress=True):
...   print(jnp.kaiser(4, 1.5))
[0.61 0.95 0.95 0.61]

See also