Matrix.Equals

Equals(object)

Determines whether the specified Object is equal to this instance.

public override bool Equals(object obj)
ParameterTypeDescription
objObjectThe Object to compare with this instance.

Return Value

true if the specified Object is equal to this instance; otherwise, false.

Exceptions

exceptioncondition
NullReferenceExceptionThe obj parameter is null.

See Also


Equals(Matrix, Matrix)

Determines whether two matrixes are equal.

public static bool Equals(Matrix a, Matrix b)
ParameterTypeDescription
aMatrixThe first matrix to compare.
bMatrixThe second matrix to compare.

Return Value

True if matrixes are equal.

See Also