[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Parameters
- A
- Type: ILNumericsInArraySingle
Real input data array. - dim (Optional)
- Type: SystemNullableUInt32
[Optional] The working dimension. Default: (null) first non-singleton dimension of A or dimension #0.
Return Value
Type: RetArrayfcomplexComplex array of the same size than A.
The output array returned will be fcomplex hermitian. I.e. the real part being even and the imaginary part being odd symmetrical.
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 selected by ILNumerics at 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]