本文簡要介紹python語言中 torch.fft.ifft2
的用法。
用法:
torch.fft.ifft2(input, s=None, dim=(- 2, - 1), norm=None, *, out=None) → Tensor
input(Tensor) -輸入張量
s(元組[int],可選的) -轉換維度中的信號大小。如果給定,每個維度
dim[i]
將在計算 IFFT 之前補零或修剪到長度s[i]
。如果指定了長度-1
,則在該維度中不進行填充。默認值:s = [input.size(d) for d in dim]
dim(元組[int],可選的) -要轉換的維度。默認值:最後兩個維度。
norm(str,可選的) -
標準化模式。對於後向變換(
ifft2()
),這些對應於:"forward"
- 沒有標準化"backward"
- 通過1/n
標準化"ortho"
- 通過1/sqrt(n)
標準化(使IFFT正交化)
其中
n = prod(s)
是邏輯 IFFT 大小。使用相同的歸一化模式調用正向變換 (fft2()
) 將在兩個變換之間應用1/n
的整體歸一化。這是使ifft2()
精確反轉所必需的。默認值為
"backward"
(由1/n
標準化)。
out(Tensor,可選的) -輸出張量。
計算
input
的二維離散傅裏葉逆變換。等效於ifftn()
但默認情況下僅對最後兩個維度進行 IFFT。示例
>>> x = torch.rand(10, 10, dtype=torch.complex64) >>> ifft2 = torch.fft.ifft2(x)
離散傅裏葉變換是可分離的,因此這裏的
ifft2()
相當於兩個一維的ifft()
調用:>>> two_iffts = torch.fft.ifft(torch.fft.ifft(x, dim=0), dim=1) >>> torch.testing.assert_close(ifft2, two_iffts, check_stride=False)
參數:
關鍵字參數:
相關用法
- Python PyTorch ifftn用法及代碼示例
- Python PyTorch ifftshift用法及代碼示例
- Python PyTorch ifft用法及代碼示例
- Python PyTorch ignore用法及代碼示例
- Python PyTorch ihfft用法及代碼示例
- Python PyTorch index_select用法及代碼示例
- Python PyTorch identity用法及代碼示例
- Python PyTorch import_huggingface_model用法及代碼示例
- Python PyTorch invoke_on_rank_and_broadcast_result用法及代碼示例
- Python PyTorch is_tensor_like用法及代碼示例
- Python PyTorch i0用法及代碼示例
- Python PyTorch irfft用法及代碼示例
- Python PyTorch is_nonzero用法及代碼示例
- Python PyTorch isneginf用法及代碼示例
- Python PyTorch i1e用法及代碼示例
- Python PyTorch is_scripting用法及代碼示例
- Python PyTorch isclose用法及代碼示例
- Python PyTorch inv_ex用法及代碼示例
- Python PyTorch isnan用法及代碼示例
- Python PyTorch imag用法及代碼示例
- Python PyTorch inv用法及代碼示例
- Python PyTorch is_tensor_method_or_property用法及代碼示例
- Python PyTorch isreal用法及代碼示例
- Python PyTorch import_fairseq_model用法及代碼示例
- Python PyTorch irfftn用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.fft.ifft2。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。