Matrix<T>.AddInPlace(Matrix<T>) Method

Adds another matrix to this matrix in-place.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> AddInPlace(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
The matrix to add.

Return Value

Matrix<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionmatrix is null
DimensionMismatchException The length of matrix does not equal the length of this instance.

See Also