Sparse Vector<T>.Add Scaled In Place Method
Adds a scaled vector to this vector.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A reference to this vector.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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. |