ManagedFftProviderOfSingle.Create1DRealFft Method

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

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.0
C#
public override Fft<float> Create1DRealFft(
	int length
)

Parameters

length  Int32
The length of the data vectors.

Return Value

Fft<Single>
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