Function Matrix.getSlice

Returns a rectangular slice of the matrix with the upper left corner at the specified location and a specified size Usable to get rows and columns; just set the height or width to 1

Matrix!(T,height,width) getSlice(uint height, uint width) (
  uint startRow,
  uint startColumn
);