pub fn submatrix<V: Vector<Scalar = f32>, MatrixLike: Matrix<V>>( matrix: MatrixLike, row: usize, column: usize, ) -> Vec<Vec<V::Scalar>>
Obtain the submatrix of the input matrix starting from the given row & column.