Creates a Fast Fourier Transformer for two-dimensional real data.
Namespace:
Extreme.Mathematics.SignalProcessing
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Fft2D<T> CreateReal(
int rowCount,
int columnCount
)
Public Shared Function CreateReal (
rowCount As Integer,
columnCount As Integer
) As Fft2D(Of T)
public:
static Fft2D<T>^ CreateReal(
int rowCount,
int columnCount
)
static member CreateReal :
rowCount : int *
columnCount : int -> Fft2D<'T>
Parameters
- rowCount
- Type: SystemInt32
The number of rows. - columnCount
- Type: SystemInt32
The number of columns.
Return Value
Type:
Fft2DTAn
Fft2DT object that can be used to compute
a 2D FFT of size
rowCount by
columnCount.
Fft2DT objects may use unmanaged memory and other resources. You should always call the dispose
method before the last reference to an Fft2DT object is released.
Reference