RowVectorExtension<T> extension

on

Properties

rows Iterable<Vector<T>>
Returns an iterable over the rows of this matrix.
no setter

Methods

row(int row) Vector<T>
Returns a mutable row vector of this matrix. Throws a RangeError, if row is out of bounds.
rowUnchecked(int row) Vector<T>
Returns a mutable row vector of this matrix. The behavior is undefined, if row is out of bounds.