Function submatrix

Source
pub fn submatrix<V: Vector<Scalar = f32>, MatrixLike: Matrix<V>>(
    matrix: MatrixLike,
    row: usize,
    column: usize,
) -> Vec<Vec<V::Scalar>>
Expand description

Obtain the submatrix of the input matrix starting from the given row & column.