Dense Vector<T>.Add Scaled In Place Method
Adds a scaled vector to this vector.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A reference to this vector.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public override Vector<T> AddScaledInPlace(
T factor,
Vector<T> vector
)
Parameters
Return Value
Vector<T>A reference to this vector.
Remarks
If vector is of type DenseVector<T>, this method uses the level 1 BLAS routine DAXPY.
Exceptions
Argument | vector is null |
Dimension | The length of vector does not equal the length of this instance. |