Managed Fft Provider Of Single.Create 2DReal Fft Method
Creates a Fast Fourier Transformer for two-dimensional real data.
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
C#
An Fft<T> object that can be used to compute an FFT of dimensions equal to rowCount by columnCount.
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
public override Fft2D<float> Create2DRealFft(
int rowCount,
int columnCount
)
Parameters
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.
Exceptions
Argument | The total number of elements is greater than 231-1. |