Click or drag to resize

ILinearAlgebraProviderTAddVectorToScaledVector Method

Adds a scaled vector to another: result = y + alpha*x.

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

Parameters

y  T
The vector to update.
alpha  T
The value to scale x by.
x  T
The vector to add to y.
result  T
The result of the addition.
Remarks
This is similar to the AXPY BLAS routine.
See Also