本文簡要介紹python語言中 torch.fft.fftfreq
的用法。
用法:
torch.fft.fftfreq(n, d=1.0, *, out=None, dtype=None, layout=torch.strided, device=None, requires_grad=False) → Tensor
out(Tensor,可選的) -輸出張量。
dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。默認值:如果None
,使用全局默認值(參見torch.set_default_tensor_type()
)。layout(
torch.layout
, 可選的) -返回張量的所需布局。默認值:torch.strided
。device(
torch.device
, 可選的) -返回張量的所需設備。默認值:如果None
,使用當前設備作為默認張量類型(參見torch.set_default_tensor_type()
)。device
將是 CPU 張量類型的 CPU 和 CUDA 張量類型的當前 CUDA 設備。requires_grad(bool,可選的) -如果 autograd 應該在返回的張量上記錄操作。默認值:
False
。
計算大小為
n
的信號的離散傅裏葉變換采樣頻率。注意
按照慣例,
fft()
首先返回正頻率項,然後以相反的順序返回負頻率,因此 Python 中所有 的f[-i]
給出負頻率項。對於長度為n
且輸入以長度單位d
間隔的 FFT,頻率為:f = [0, 1, ..., (n - 1) // 2, -(n // 2), ..., -1] / (d * n)
注意
對於偶數長度,
f[n/2]
處的奈奎斯特頻率可以被視為負或正。fftfreq()
遵循 NumPy 的約定,將其視為負數。示例
>>> torch.fft.fftfreq(5) tensor([ 0.0000, 0.2000, 0.4000, -0.4000, -0.2000])
對於偶數輸入,我們可以看到
f[2]
處的奈奎斯特頻率為負值:>>> torch.fft.fftfreq(4) tensor([ 0.0000, 0.2500, -0.5000, -0.2500])
參數:
關鍵字參數:
相關用法
- Python PyTorch fft2用法及代碼示例
- Python PyTorch fftn用法及代碼示例
- Python PyTorch fftshift用法及代碼示例
- Python PyTorch fft用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch flip用法及代碼示例
- Python PyTorch frombuffer用法及代碼示例
- Python PyTorch float_power用法及代碼示例
- Python PyTorch floor_divide用法及代碼示例
- Python PyTorch fractional_max_pool3d用法及代碼示例
- Python PyTorch frac用法及代碼示例
- Python PyTorch freeze用法及代碼示例
- Python PyTorch fp16_compress_hook用法及代碼示例
- Python PyTorch fake_quantize_per_channel_affine用法及代碼示例
- Python PyTorch flipud用法及代碼示例
- Python PyTorch fliplr用法及代碼示例
- Python PyTorch fp16_compress_wrapper用法及代碼示例
- Python PyTorch fractional_max_pool2d用法及代碼示例
- Python PyTorch from_numpy用法及代碼示例
- Python PyTorch filter_wikipedia_xml用法及代碼示例
- Python PyTorch fuse_modules用法及代碼示例
- Python PyTorch fasterrcnn_mobilenet_v3_large_320_fpn用法及代碼示例
- Python PyTorch fmax用法及代碼示例
- Python PyTorch fork用法及代碼示例
- Python PyTorch fmin用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.fft.fftfreq。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。