MatrixMultiplyAssign Method |
Sets the product
Matrix to equal the linear algebra multiplication
of the
multiplicand times the
multiplier.
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 MultiplyAssign(
Matrix multiplicand,
Matrix multiplier,
Matrix product
)
Public Shared Sub MultiplyAssign (
multiplicand As Matrix,
multiplier As Matrix,
product As Matrix
)
public:
static void MultiplyAssign(
Matrix^ multiplicand,
Matrix^ multiplier,
Matrix^ product
)
static member MultiplyAssign :
multiplicand : Matrix *
multiplier : Matrix *
product : Matrix -> unit
Parameters
- multiplicand
- Type: AGI.Foundation.CoordinatesMatrix
The first Matrix to multiply. - multiplier
- Type: AGI.Foundation.CoordinatesMatrix
The second Matrix to multiply. - product
- Type: AGI.Foundation.CoordinatesMatrix
The Matrix to use to store the result of the operation.
See Also