Click or drag to resize

ManagedLinearAlgebraProviderAddVectorToScaledVector(Single, Single, Single, Single) 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(
	float[] y,
	float alpha,
	float[] x,
	float[] result
)

Parameters

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

Implements

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