mindspore.ops.blackman_window
- mindspore.ops.blackman_window(window_length, periodic=True, *, dtype=None)[source]
Blackman window function.
Usually used to extract finite signal segment for FFT.
where
is the full window size, and n is natural number less than :[0, 1, …, N-1].- Parameters
- Keyword Arguments
dtype (mindspore.dtype, optional) – The data type specified. Default
None
.- Returns
A 1-D tensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> window_length = mindspore.tensor(10) >>> output = mindspore.ops.blackman_window(window_length) >>> print(output) [-2.9802322e-08 4.0212840e-02 2.0077014e-01 5.0978714e-01 8.4922993e-01 1.0000000e+00 8.4922981e-01 5.0978690e-01 2.0077008e-01 4.0212870e-02]