pub fn matrix_to_numpy<'py, N, R, C, S>(
py: Python<'py>,
matrix: &Matrix<N, R, C, S>,
) -> PyObject
Expand description
Copy a nalgebra matrix to a numpy ndarray.
This does not create a view of the nalgebra matrix. As such, the matrix can be dropped without problem.