|   | Matrix4x4Subtract Method  | 
        
         
             Subtracts corresponding components of two matrices.
             
 
    Namespace: 
   Accord.Math
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic static Matrix4x4 Subtract(
	Matrix4x4 matrix1,
	Matrix4x4 matrix2
)
Public Shared Function Subtract ( 
	matrix1 As Matrix4x4,
	matrix2 As Matrix4x4
) As Matrix4x4
Parameters
- matrix1
- Type: Accord.MathMatrix4x4
 The matrix to subtract from.
- matrix2
- Type: Accord.MathMatrix4x4
 The matrix to subtract from the first matrix.
Return Value
Type: 
Matrix4x4Returns a matrix which components are equal to difference of corresponding
             components of the two specified matrices.
 See Also
See Also