CRaPI - Correct Robust and Perfect API

Matrix Subtraction Operator 

Calculates the subtracted value of each cell of 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