equals method

equals

Determines whether two matrixes are equal.

Returns

True if matrixes are equal.

def equals(self, a, b):
    ...
ParameterTypeDescription
aMatrixThe first matrix to compare.
bMatrixThe second matrix to compare.

See Also