FftBase<T> Constructor

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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