FastHartleyTransformRealFFT(Double, Int32, FourierDirection) Method |
Does a real-valued fourier transform of 'n' points of the
'real' array. On forward transform, the real part of the transform ends
up in the first half of the array and the imaginary part of the
transform ends up in the second half of the array. On backward transform, real and imaginary part
have to be located in the same way like the result of the forward transform.
Namespace: Altaxo.Calc.FourierAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void RealFFT(
double[] real,
int n,
FourierDirection direction
)
Parameters
- real Double
- The array holding the real values to transform.
- n Int32
- The number of points to transform. Has to be a power of 2 (unchecked!).
- direction FourierDirection
- The direction of the Fourier transform.
See Also