FourierForward2D(Complex32, Int32, Int32, FourierOptions) Method |
Applies the forward Fast Fourier Transform (FFT) to two dimensional sample data.
Namespace: Altaxo.Calc.IntegralTransformsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void Forward2D(
Complex32[] samplesRowWise,
int rows,
int columns,
FourierOptions options = FourierOptions.Default
)
Parameters
- samplesRowWise Complex32
- Sample data, organized row by row, where the FFT 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