CRaPI - Correct Robust and Perfect API

Matrix Multiplication Operator 

Calculates the multiplicated value of each cell of the two matrices

public static Matrix operator *(
   Matrix pMatrix1,
   Matrix pMatrix2
);

Parameters

pMatrix1
First matrix
pMatrix2
Second matrix

Return Value

The result matrix

Remarks

A new Matrix is produced

Exceptions

Exception TypeCondition
ArgumentExceptionis thrown when the two matrices are of different sizes

See Also

Matrix Class | TeamYaffa.CRaPI.Utility Namespace