Click or drag to resize

ArrayMathCopyFromComplexToSplittedArrays Method

Copies an array of Complex elements into an array of the real part values and an array of the imaginary part values.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void CopyFromComplexToSplittedArrays(
	Complex[] src,
	double[] destreal,
	double[] destimag,
	int n
)

Parameters

src  Complex
The source array.
destreal  Double
The array where the real part values are stored into.
destimag  Double
The destination array where the imaginary part values are stored into.
n  Int32
The number of elements to copy. The copying is done from index 0 to n-1.
See Also