Click or drag to resize

RectangularMatrixAddition Operator

Adds two real, rectangular matrices.

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

Parameters

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

Return Value

Type: RectangularMatrix
The sum matrix A + B.
Exceptions
ExceptionCondition
ArgumentNullExceptionA or B is .
DimensionMismatchExceptionA and B do not have the same dimensions.
See Also