= (Matrix)
Compares two matrixes with the same dimension by comparing all their corresponding elements. If the dimensions are different, an error will occur.
Arguments
matrix0
and matrix1
are the Matrixes to compare.
Return values
condition
is TRUE if the matrixes are equal, FALSE otherwise.
Complexity
O(dimension)
Example
Output:
FALSE
TRUE