Matrix<T>.AdditionAssignment Operator

Definition

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

Overload List

AdditionAssignment(T) Adds a scalar to a matrix.
AdditionAssignment(Matrix<T>) Adds another matrix to this matrix in-place.

AdditionAssignment(T) Operator

Adds a scalar to a matrix.
C#
C# does not support this operator.

Parameters

right  T
 

Return Value

A reference to this instance.

AdditionAssignment(Matrix<T>) Operator

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

Parameters

right  Matrix<T>
 

Return Value

A reference to this instance.

Exceptions

ArgumentNullException

matrix is null.

DimensionMismatchException

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

See Also