Block Vector<T>.Add Scaled In Place Method
Adds a scaled vector to this instance.
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
Using this method is more efficient than evaluating the equivalent expression using overloaded operators. In the latter case, two intermediate vectors are created. This method doesn't create any intermediate vectors.
Exceptions
Argument | vector is null. |
Dimension | The length of vector does not equal the length of this instance. |
Component | An attempt is made to modify a component of a fixed BlockVector<T>. |