mindspore.ops.BartlettWindow

class mindspore.ops.BartlettWindow(periodic=True, dtype=mstype.float32)[源代码]

巴特利特窗口函数。

更多参考详见 mindspore.ops.bartlett_window()

支持平台:

GPU CPU

样例:

>>> window_length = Tensor(5, mstype.int32)
>>> bartlett_window = ops.BartlettWindow(periodic=True, dtype=mstype.float32)
>>> output = bartlett_window(window_length)
>>> print(output)
[0.  0.4 0.8 0.8 0.4]