Subtracts a matrix from another matrix.

Namespace:  Bespoke.Common.LinearAlgebra
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static Matrix operator -(
	Matrix M1,
	Matrix M2
)
Visual Basic (Declaration)
Public Shared Operator - ( _
	M1 As Matrix, _
	M2 As Matrix _
) As Matrix
Visual C++
public:
static Matrix^ operator -(
	Matrix^ M1, 
	Matrix^ M2
)

Parameters

M1
Type: Bespoke.Common.LinearAlgebra..::.Matrix
Source matrix.
M2
Type: Bespoke.Common.LinearAlgebra..::.Matrix
Source matrix.

Return Value

Resulting matrix.

See Also