MMatrixMultiply(MMatrix, MMatrix) Operator
Computes the multiplication of two
MMatrix objects.
Namespace: SMath.Math.SymbolicAssembly: SMath.Math.Symbolic (in SMath.Math.Symbolic.dll) Version: 1.35.9018.0
public static MItem operator *(
MMatrix c11,
MMatrix c22
)
Public Shared Operator * (
c11 As MMatrix,
c22 As MMatrix
) As MItem
public:
static MItem^ operator *(
MMatrix^ c11,
MMatrix^ c22
)
static let inline (*)
c11 : MMatrix *
c22 : MMatrix : MItem
- c11 MMatrix
- First MMatrix object to perform operator to.
- c22 MMatrix
- Second MMatrix object to perform operator to.
MItemResult of the operation.
| GeneralException | Throws if the number of rows and/or columns of matrices or vectors do not match. |