jax.numpy.bartlett#
- jax.numpy.bartlett(M)[源代码]#
返回大小为 M 的 Bartlett 窗口。
numpy.bartlett()
的 JAX 实现。示例
>>> with jnp.printoptions(precision=2, suppress=True): ... print(jnp.bartlett(4)) [0. 0.67 0.67 0. ]
另请参阅
jax.numpy.blackman()
:返回大小为 M 的 Blackman 窗口。jax.numpy.hamming()
: 返回大小为 M 的汉明窗。jax.numpy.hanning()
: 返回大小为 M 的汉宁窗。jax.numpy.kaiser()
: 返回大小为 M 的凯撒窗。