现在位置: 首页 > PyTorch 教程 > 正文

PyTorch torch.blackman_window 函数


Pytorch torch 参考手册 Pytorch torch 参考手册

torch.blackman_window 是 PyTorch 中用于生成 Blackman 窗口的函数。Blackman 窗口是一种余弦组合窗函数,比 Hamming 窗口有更好的旁瓣抑制性能,常用于频谱分析。

函数定义

torch.blackman_window(window_length, periodic=True, dtype=None, layout=torch.strided, device=None, requires_grad=False)

使用示例

实例

import torch

# 创建长度为 512 的 Blackman 窗口
window = torch.blackman_window(512)
print("Blackman 窗口形状:", window.shape)
print("窗口前5个值:", window[:5])

Pytorch torch 参考手册 Pytorch torch 参考手册