isVector property

bool isVector

Returns true if Matrix is column-vector or row-vector

Implementation

bool get isVector => m == 1 || n == 1;