Click or drag to resize

SquareMatrixAddition Operator

Adds two real, square matrices.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static SquareMatrix operator +(
	SquareMatrix A,
	SquareMatrix B
)

Parameters

A
Type: Meta.Numerics.MatricesSquareMatrix
The first matrix.
B
Type: Meta.Numerics.MatricesSquareMatrix
The second matrix.

Return Value

Type: SquareMatrix
The sum matrix A + B.
Exceptions
ExceptionCondition
ArgumentNullExceptionA or B is .
DimensionMismatchExceptionThe dimension of A is not the same as the dimension of B.
See Also