Fft<T>.CreateComplex Method

Creates a Fast Fourier Transformer for one-dimensional real data.

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Fft<T> CreateComplex(
	int length
)

Parameters

length  Int32
The length of the data vectors.

Return Value

Fft<T>
An Fft<T> object that can be used to compute an FFT of length equal to length.

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.

See Also