Tests a matrix for inequality 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
The matrix on the left of the equal sign.
M2
Type: Bespoke.Common.LinearAlgebra..::.Matrix
The matrix on the right of the equal sign.

Return Value

true if the matrices are not equal; false otherwise.

See Also