ILNumerics Ultimate VS

ILMathfftn Method (InArrayfcomplex)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Fast fourier transform (n-D)

[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> fftn(
	InArray<fcomplex> A
)

Parameters

A
Type: ILNumericsInArrayfcomplex
Input array, n-D

Return Value

Type: RetArrayfcomplex
Transformation result
Remarks

The n-dimensional transformation is computed for the n-dimensional array A. This is equivalent to repeatedly (inplace) computing one dimensional transformations along all dimensions of A. However, using this function may be of magnitudes faster than using 1D transformations. This depends on the algorithm and API provided by the underlying native library.

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.

[ILNumerics Computing Engine]

See Also

Reference