FourierInverse2D(Complex32, Int32, Int32, FourierOptions) Method | 
            Applies the inverse Fast Fourier Transform (iFFT) to two dimensional sample data.
            
Namespace: Altaxo.Calc.IntegralTransformsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic static void Inverse2D(
	Complex32[] spectrumRowWise,
	int rows,
	int columns,
	FourierOptions options = FourierOptions.Default
)
Parameters
- spectrumRowWise  Complex32
 - Sample data, organized row by row, where the iFFT is evaluated in place
 - rows  Int32
 - The number of rows.
 - columns  Int32
 - The number of columns.
 - options  FourierOptions  (Optional)
 - Fourier Transform Convention Options.
 
RemarksData available organized column by column instead of row by row can be processed directly by swapping the rows and columns arguments.
See Also