Compare two matrices and return true if both matrices equal (and false otherwise).
- Parameters
-
| matrix | The first matrix. |
| other | The second matrix. |
- Returns
- A boolean.
|
|
template<typename _CT > |
| bool | CGAL::OSM::Sparse_matrix< CoefficientType, ChainTypeFlag >::operator== (const Sparse_matrix< _CT, OSM::COLUMN > &matrix, const Sparse_matrix< _CT, OSM::COLUMN > &other) |
| | Comparison of two COLUMN matrices.
|
| |
|
template<typename _CT > |
| bool | CGAL::OSM::Sparse_matrix< CoefficientType, ChainTypeFlag >::operator== (const Sparse_matrix< _CT, OSM::COLUMN > &matrix, const Sparse_matrix< _CT, OSM::ROW > &other) |
| | Comparison of a COLUMN and a ROW matrix.
|
| |
|
template<typename _CT > |
| bool | CGAL::OSM::Sparse_matrix< CoefficientType, ChainTypeFlag >::operator== (const Sparse_matrix< _CT, OSM::ROW > &matrix, const Sparse_matrix< _CT, OSM::COLUMN > &other) |
| | Comparison of a ROW and a COLUMN matrix.
|
| |
|
template<typename _CT > |
| bool | CGAL::OSM::Sparse_matrix< CoefficientType, ChainTypeFlag >::operator== (const Sparse_matrix< _CT, OSM::ROW > &matrix, const Sparse_matrix< _CT, OSM::ROW > &other) |
| | Comparison of two ROW matrices.
|
| |