mindspore/docs/api/api_python/ops/mindspore.ops.BlackmanWindo...

22 lines
929 B
ReStructuredText
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.BlackmanWindow
==============================
.. py:class:: mindspore.ops.BlackmanWindow(periodic=True, dtype=mstype.float32)
布莱克曼窗口函数。
.. warning::
这是一个实验性API后续可能修改或删除。
更多参考详见 :func:`mindspore.ops.blackman_window`
参数:
- **periodic** (bool可选) - 如果为 ``True`` ,返回一个窗口作为周期函数使用。如果为 ``False`` ,返回一个对称窗口。默认值: ``True``
- **dtype** (mindspore.dtype可选) - 输出数据类型目前只支持float16、float32和float64。默认值 ``mstype.float32``
输入:
- **window_length** (Tensor) - 返回窗口的大小数据类型为int32int64。输入数据的值为[0, 1000000]的整数。
输出:
1D Tensor大小为 `window_length` ,数据类型与 `dtype` 一致。