public static RectangularMatrix operator *(
AnyRectangularMatrix A,
AnyRectangularMatrix B
)Public Shared Operator * (
A As AnyRectangularMatrix,
B As AnyRectangularMatrix
) As RectangularMatrixpublic:
static RectangularMatrix^ operator *(
AnyRectangularMatrix^ A,
AnyRectangularMatrix^ B
)static let inline (*)
A : AnyRectangularMatrix *
B : AnyRectangularMatrix : RectangularMatrixFor matrix multiplication, the column count of the first matrix must equal the row count of the second matrix.
Matrix multiplication is an O(N3) process.