Vector<T>.AdditionAssignment Operator

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0

Overload List

AdditionAssignment(T) Adds a constant to a vector.
AdditionAssignment(Vector<T>) Adds another vector to this vector in-place.

AdditionAssignment(T) Operator

Adds a constant to a vector.
C#
C# does not support this operator.

Parameters

right  T
 

Return Value

A reference to this instance.

AdditionAssignment(Vector<T>) Operator

Adds another vector to this vector in-place.
C#
C# does not support this operator.

Parameters

right  Vector<T>
 

Return Value

A reference to this instance.

Exceptions

ArgumentNullException

vector is null.

DimensionMismatchException

The length of vector does not equal the length of this instance.

See Also