MatrixMultiply Method (Matrix, Matrix6By6) |
Creates a
Matrix which is the linear algebra multiplication of
the two given matrices.
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 Matrix Multiply(
Matrix multiplicand,
Matrix6By6 multiplier
)
Public Shared Function Multiply (
multiplicand As Matrix,
multiplier As Matrix6By6
) As Matrix
public:
static Matrix^ Multiply(
Matrix^ multiplicand,
Matrix6By6^ multiplier
)
static member Multiply :
multiplicand : Matrix *
multiplier : Matrix6By6 -> Matrix
Parameters
- multiplicand
- Type: AGI.Foundation.CoordinatesMatrix
The first Matrix to multiply. - multiplier
- Type: AGI.Foundation.CoordinatesMatrix6By6
The second Matrix6By6 to multiply.
Return Value
Type:
MatrixA
Matrix which is the multiplication of this matrix and the given matrix.
See Also