FftBase<T> Constructor

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

FftBase<T>(FftDomain, Int32) Constructs a new one-dimensional FFT transform implementation.
FftBase<T>(FftDomain, Int32, Int32) Constructs a new two-dimensional FFT transform implementation.

FftBase<T>(FftDomain, Int32)

Constructs a new one-dimensional FFT transform implementation.
C#
protected FftBase(
	FftDomain domain,
	int length
)

Parameters

domain  FftDomain
The domain of the signal.
length  Int32
The length of the transform.

FftBase<T>(FftDomain, Int32, Int32)

Constructs a new two-dimensional FFT transform implementation.
C#
protected FftBase(
	FftDomain domain,
	int rowCount,
	int columnCount
)

Parameters

domain  FftDomain
The domain of the signal.
rowCount  Int32
The number of rows.
columnCount  Int32
The number of columns.

See Also