Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics.LinearAlgebra Namespace > Matrix Class > Operators and Type Conversions


Extreme Optimization Mathematics Library for .NET

Matrix Inequality Operator 

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

[Visual Basic]
returnValue = Matrix.op_Inequality(matrix1, matrix2)
[C#]
public static bool operator !=(
   Matrix matrix1,
   Matrix matrix2
);

Parameters

matrix1
A Matrix.
matrix2
A Matrix.

Return Value

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

See Also

Matrix Class | Extreme.Mathematics.LinearAlgebra Namespace