Click or drag to resize

ArrayMathMultiplySplittedComplexArrays Method

Multiplies two splitted complex array and stores the result in a splitted complex array.

Namespace: Altaxo.Calc.Fourier
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void MultiplySplittedComplexArrays(
	double[] src1real,
	double[] src1imag,
	double[] src2real,
	double[] src2imag,
	double[] destreal,
	double[] destimag,
	int n
)

Parameters

src1real  Double
Real part of the first input array. Must be at least of length n.
src1imag  Double
Imaginary part of the first input array. Must be at least of length n.
src2real  Double
Real part of the first input array. Must be at least of length n.
src2imag  Double
Imaginary part of the first input array. Must be at least of length n.
destreal  Double
Real part of the resulting array. Must be at least of length n.
destimag  Double
Imaginary part of the resulting array. Must be at least of length n.
n  Int32
Normally, the size of the arrays. The multiplication is done from index 0 to n-1.
Remarks
The resulting array may be identical to one of the input arrays.
See Also