Returns a value indicating whether two instances of Matrix are not equal.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared Operator <> ( _
	matrix1 As Matrix, _
	matrix2 As Matrix _
) As Boolean
C#
public static bool operator != (
	Matrix matrix1,
	Matrix matrix2
)
C++
public:
static bool operator != (
	Matrix^ matrix1, 
	Matrix^ matrix2
)

Parameters

matrix1 (Extreme.Mathematics.LinearAlgebra.Matrix)
A Matrix.
matrix2 (Extreme.Mathematics.LinearAlgebra.Matrix)
A Matrix.

Return Value

true if the two matrices have different sizes, or not all their components are identical; otherwise false.