Click or drag to resize

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

Parameters

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

Implements

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