isSquareMatrix property

bool isSquareMatrix

Determines whether the matrix is square nor not.

Implementation

bool get isSquareMatrix => rowCount == columnCount;