ColumnVectorExtension<T> extension

on

Properties

columns Iterable<Vector<T>>
Returns an iterable over the columns of this Matrix.
no setter

Methods

column(int index) Vector<T>
Returns a mutable column Vector of this Matrix. Throws a RangeError, if index is out of bounds.
columnUnchecked(int index) Vector<T>
Returns a mutable column Vector of this Matrix. The behavior is undefined, if index is out of bounds. An offset of 0 refers to the diagonal in the center of the matrix, a negative offset to the diagonals above, a positive offset to the diagonals below.