Click or drag to resize

ManagedLinearAlgebraProviderAddArrays(Complex, Complex, Complex) Method

Does a point wise add of two arrays z = x + y. This can be used to add vectors or matrices.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void AddArrays(
	Complex[] x,
	Complex[] y,
	Complex[] result
)

Parameters

x  Complex
The array x.
y  Complex
The array y.
result  Complex
The result of the addition.

Implements

ILinearAlgebraProviderTAddArrays(T, T, T)
Remarks
There is no equivalent BLAS routine, but many libraries provide optimized (parallel and/or vectorized) versions of this routine.
See Also