columnUnchecked method

Vector<T> columnUnchecked(
  1. int index
)

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.

Implementation

Vector<T> columnUnchecked(int index) => ColumnVector<T>(this, index);