Matrix<T>.AdditionAssignment Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AdditionAssignment(Matrix<T>, T) Adds a constant to a matrix in place.
AdditionAssignment(Matrix<T>, Matrix<T>) Adds another matrix to a matrix in place.

AdditionAssignment(Matrix<T>, T) Operator

Adds a constant to a matrix in place.
C#
C# does not support this operator.

Parameters

self  Matrix<T>
A Matrix<T>.
term  T
A real number.

Return Value

Matrix<T>
A reference to self.

AdditionAssignment(Matrix<T>, Matrix<T>) Operator

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

Parameters

self  Matrix<T>
A Matrix<T>.
term  Matrix<T>
The matrix to add to self.

Return Value

Matrix<T>
A reference to self.

See Also