Creates a Fast Fourier Transformer for one-dimensional real data.
Namespace:
Extreme.Mathematics.SignalProcessing
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Fft<T> CreateComplex(
int length
)
Public Shared Function CreateComplex (
length As Integer
) As Fft(Of T)
public:
static Fft<T>^ CreateComplex(
int length
)
static member CreateComplex :
length : int -> Fft<'T>
Parameters
- length
- Type: SystemInt32
The length of the data vectors.
Return Value
Type:
FftTAn
FftT object that can be used to compute an FFT of length equal to
length.
FftT objects may use unmanaged memory and other resources. You should always call the dispose
method before the last reference to an FftT object is released.
Reference