column method

Vector<T> column(
  1. int index
)

Returns a mutable column Vector of this Matrix. Throws a RangeError, if index is out of bounds.

Implementation

Vector<T> column(int index) {
  RangeError.checkValidIndex(index, this, 'col', colCount);
  return columnUnchecked(index);
}