ArrayMathCopyFromSplittedArraysToComplex Method |
Copies two arrays with real and imaginary part values into an array of
Complex values.
Namespace: Altaxo.Calc.FourierAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void CopyFromSplittedArraysToComplex(
double[] srcreal,
double[] srcimag,
Complex[] dest,
int n
)
Parameters
- srcreal Double
- The source array containing the real part values.
- srcimag Double
- The source array containing the imaginary part values.
- dest Complex
- The destination array.
- n Int32
- The number of elements to copy. The copying is done from index 0 to n-1.
See Also