ILNumerics Ultimate VS

ILMathfft Method (InArrayfcomplex, NullableUInt32)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Fast fourier transform along a specific dimension.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<fcomplex> fft(
	InArray<fcomplex> A,
	Nullable<uint> dim = null
)

Parameters

A
Type: ILNumericsInArrayfcomplex
Input array
dim (Optional)
Type: SystemNullableUInt32
[Optional] The working dimension. Default: (null) first non-singleton dimension of A or dimension #0.

Return Value

Type: RetArrayfcomplex
Complex array of the same size than A.
Remarks

The forward fourier transform and the inverse fourier transform of a given data array A are mathematically equivalent. It's only a scaling factor which is needed to make sure, A equals ifft(fft(A)). That scaling is introduced in the inverse transform.

The transformation is computed by use of the native library which currently is set up for your processor and OS version. The underlying library is automatically choosen at ILNumerics startup and accessed via the static member ILMath.FFT. See the online documentation for more details in how to tune/configure and select dedicated native libraries. Currently supported libraries are: Intel MKL (included), AMD ACML and FFTW3 (prepared, optional modules, not included due to licensing conflicts).

[ILNumerics Computing Engine]

See Also

Reference