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
)
Public Shared Operator + (
A As RectangularMatrix,
B As RectangularMatrix
) As RectangularMatrix
public:
static RectangularMatrix^ operator +(
RectangularMatrix^ A,
RectangularMatrix^ B
)
static let inline (+)
A : RectangularMatrix *
B : RectangularMatrix : RectangularMatrix
Parameters
- A
- Type: Meta.Numerics.MatricesRectangularMatrix
The first matrix. - B
- Type: Meta.Numerics.MatricesRectangularMatrix
The second matrix.
Return Value
Type:
RectangularMatrixThe sum matrix
A +
B.
Exceptions See Also