getRow method

Matrix getRow(
  1. int index
)

Return Matrix.row of index row of this

Implementation

Matrix getRow(int index) {
  return Matrix.row(_base[index]);
}