Click or drag to resize

FourierInverse2D(Complex32, Int32, Int32, FourierOptions) Method

Applies the inverse Fast Fourier Transform (iFFT) to two dimensional sample data.

Namespace: Altaxo.Calc.IntegralTransforms
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public 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.
Remarks
Data available organized column by column instead of row by row can be processed directly by swapping the rows and columns arguments.
See Also