RowVectorExtension<T> extension
- on
-
- Matrix<
T>
- Matrix<
Properties
-
rows
→ Iterable<
Vector< T> > -
Available on Matrix<
Returns an iterable over the rows of this matrix.T> , provided by the RowVectorExtension extensionno setter
Methods
-
row(
int row) → Vector< T> -
Available on Matrix<
Returns a mutable row vector of this matrix. Throws a RangeError, ifT> , provided by the RowVectorExtension extensionrow
is out of bounds. -
rowUnchecked(
int row) → Vector< T> -
Available on Matrix<
Returns a mutable row vector of this matrix. The behavior is undefined, ifT> , provided by the RowVectorExtension extensionrow
is out of bounds.