Click or drag to resize

RealFFTResultWrapperFromRepresentationCompactComplexToReal(IReadOnlyListDouble, IReadOnlyListDouble, IVectorDouble) Method

Transforms from a compact complex representation (nyquist frequency value put in imaginary part of first element) to real representation.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void FromRepresentationCompactComplexToReal(
	IReadOnlyList<double> re,
	IReadOnlyList<double> im,
	IVector<double> destination
)

Parameters

re  IReadOnlyListDouble
Stores the real part of the spectrum.
im  IReadOnlyListDouble
Stores the imaginary part of the spectrum.
destination  IVectorDouble
After return, stores the spectrum in normalized real representation. The length of the vector has to be equal to the length of the FFT.
See Also