Compares a matrix for equality with 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 bool operator ==(
	Matrix M1,
	Matrix M2
)
Visual Basic (Declaration)
Public Shared Operator = ( _
	M1 As Matrix, _
	M2 As Matrix _
) As Boolean
Visual C++
public:
static bool operator ==(
	Matrix^ M1, 
	Matrix^ M2
)

Parameters

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

Return Value

true if the matrices are equal; false otherwise.

See Also