本文簡要介紹 python 語言中 numpy.fft.irfft2
的用法。
用法:
fft.irfft2(a, s=None, axes=(- 2, - 1), norm=None)
計算
rfft2
的倒數。- a: array_like
輸入數組
- s: 整數序列,可選
逆 FFT 的實際輸出形狀。
- axes: 整數序列,可選
計算逆 fft 的軸。默認是最後兩個軸。
- norm: {“backward”, “ortho”, “forward”},可選
-
標準化模式(參見
numpy.fft
)。默認為“backward”。指示前向/後向變換對的哪個方向被縮放以及使用什麽歸一化因子。
- out: ndarray
逆實二維 FFT 的結果。
參數:
返回:
注意:
這實際上是具有不同默認值的
irfftn
。有關詳細信息,請參閱irfftn
。例子:
>>> a = np.mgrid[:5, :5][0] >>> A = np.fft.rfft2(a) >>> np.fft.irfft2(A, s=a.shape) array([[0., 0., 0., 0., 0.], [1., 1., 1., 1., 1.], [2., 2., 2., 2., 2.], [3., 3., 3., 3., 3.], [4., 4., 4., 4., 4.]])
相關用法
- Python numpy fft.irfft用法及代碼示例
- Python numpy fft.irfftn用法及代碼示例
- Python numpy fft.ihfft用法及代碼示例
- Python numpy fft.ifftshift用法及代碼示例
- Python numpy fft.ifftn用法及代碼示例
- Python numpy fft.ifft2用法及代碼示例
- Python numpy fft.ifft用法及代碼示例
- Python numpy fft.rfft用法及代碼示例
- Python numpy fft.rfft2用法及代碼示例
- Python numpy fft.fftfreq用法及代碼示例
- Python numpy fft.rfftn用法及代碼示例
- Python numpy fft.fftn用法及代碼示例
- Python numpy fft.fft2用法及代碼示例
- Python numpy fft.fftshift用法及代碼示例
- Python numpy fft.fft用法及代碼示例
- Python numpy fft.hfft用法及代碼示例
- Python numpy fft.rfftfreq用法及代碼示例
- Python numpy floor用法及代碼示例
- Python numpy float_power用法及代碼示例
- Python numpy frombuffer用法及代碼示例
- Python numpy flatiter用法及代碼示例
- Python numpy fmod用法及代碼示例
- Python numpy find_common_type用法及代碼示例
- Python numpy flatnonzero用法及代碼示例
- Python numpy format_float_scientific用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.fft.irfft2。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。