columns property

Iterable<Vector<T>> columns

Returns an iterable over the columns of this Matrix.

Implementation

Iterable<Vector<T>> get columns sync* {
  for (var c = 0; c < colCount; c++) {
    yield columnUnchecked(c);
  }
}