Click or drag to resize

Matrix.Addition Operator (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: 24.3.420.0 (24.3.420.0)
Syntax
public static Matrix operator +(
	Matrix leftAddend,
	Matrix rightAddend
)

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: Matrix
A Matrix which is the sum of the two given matrices and the given matrix
See Also