Returns true if the matrix is square, meaning it has the same number of #rows() rows and #cols() columns. @return true if this matrix is square, false if it is rectangular.
()
| 589 | * rectangular. |
| 590 | */ |
| 591 | public boolean isSquare() |
| 592 | { |
| 593 | return rows() == cols(); |
| 594 | } |
| 595 | |
| 596 | /** |
| 597 | * Alters the current matrix by swapping the values stored in two different |
no test coverage detected