Managed Fft Provider Of Single.Create 2DComplex Fft Method
Creates a Fast Fourier Transformer for two-dimensional complex data.
Definition
Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
C#
An Fft<T> object that can be used to compute an FFT of dimensions equal to rowCount by columnCount.
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
public override Fft2D<float> Create2DComplexFft(
int rowCount,
int columnCount
)
Parameters
- rowCount Int32
- The number of rows.
- columnCount Int32
- The number of columns.
Return Value
Fft2D<Single>An Fft<T> object that can be used to compute an FFT of dimensions equal to rowCount by columnCount.
Remarks
Fft<T> objects may use unmanaged memory and other resources. You should always call the dispose method before the last reference to an Fft<T> object is released.