Matrix.Add Method (Matrix, Matrix) |
Creates a Matrix which is the sum of the two given matrices.
The most efficient operation to do this is chosen through double dispatch based
on the concrete types of the given matrices.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Matrix Add(
Matrix leftAddend,
Matrix rightAddend
)
Public Shared Function Add (
leftAddend As Matrix,
rightAddend As Matrix
) As Matrix
public:
static Matrix^ Add(
Matrix^ leftAddend,
Matrix^ rightAddend
)
static member Add :
leftAddend : Matrix *
rightAddend : Matrix -> Matrix
Parameters
- leftAddend
- Type: AGI.Foundation.Coordinates.Matrix
The first Matrix to sum. - rightAddend
- Type: AGI.Foundation.Coordinates.Matrix
The second Matrix to sum.
Return Value
Type:
MatrixA
Matrix which is the sum of the two given matrices and the given matrix
See Also