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 Equality Operator 

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

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

Parameters

matrix1
A Matrix.
matrix2
A Matrix.

Return Value

true if the two vectors have the same length and identical components; otherwise false.

See Also

Matrix Class | Extreme.Mathematics.LinearAlgebra Namespace