Click or drag to resize

ManagedLinearAlgebraProviderAddVectorToScaledVector(Double, Double, Double, Double) 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#
public void AddVectorToScaledVector(
	double[] y,
	double alpha,
	double[] x,
	double[] result
)

Parameters

y  Double
The vector to update.
alpha  Double
The value to scale x by.
x  Double
The vector to add to y.
result  Double
The result of the addition.

Implements

ILinearAlgebraProviderTAddVectorToScaledVector(T, T, T, T)
Remarks
This is similar to the AXPY BLAS routine.
See Also