MMatrixMultiply(MMatrix, MMatrix) Operator

Computes the multiplication of two MMatrix objects.

Definition

Namespace: SMath.Math.Symbolic
Assembly: SMath.Math.Symbolic (in SMath.Math.Symbolic.dll) Version: 1.35.9018.0
C#
public static MItem operator *(
	MMatrix c11,
	MMatrix c22
)

Parameters

c11  MMatrix
First MMatrix object to perform operator to.
c22  MMatrix
Second MMatrix object to perform operator to.

Return Value

MItem
Result of the operation.

Exceptions

GeneralExceptionThrows if the number of rows and/or columns of matrices or vectors do not match.

See Also