Tests two matrices, represented by two-dimensional arrays, for equality using elementwise equality comparison.
- Template Parameters
-
ValueType | A type of a matrix element. |
- Parameters
-
[in] | left_column_matrix | A pointer to a two-dimensional array which represents the left matrix to compare. |
[in] | right_column_matrix | A pointer to a two-dimensional array which represents the right matrix to compare. |
| columns | A number of columns in the matrices to compare. |
| rows | A number of rows in the matrices to compare. |
- Returns
true
, if the matrices are elementwise equal, and false
otherwise.
- Exceptions
-
Any | exceptions resulting from comparison of ValueType scalars which constitute the matrices. |