Sets the sum
Matrix to equal the element-wise addition
of the
leftAddend and the
rightAddend.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static void AddAssign(
Matrix leftAddend,
Matrix rightAddend,
Matrix sum
)
Public Shared Sub AddAssign (
leftAddend As Matrix,
rightAddend As Matrix,
sum As Matrix
)
public:
static void AddAssign(
Matrix^ leftAddend,
Matrix^ rightAddend,
Matrix^ sum
)
static member AddAssign :
leftAddend : Matrix *
rightAddend : Matrix *
sum : Matrix -> unit
Parameters
- leftAddend
- Type: AGI.Foundation.CoordinatesMatrix
The first Matrix to sum. - rightAddend
- Type: AGI.Foundation.CoordinatesMatrix
The second Matrix to sum. - sum
- Type: AGI.Foundation.CoordinatesMatrix
The Matrix to use to store the result of the operation.
See Also