Trait IntoNdarray

Source
pub trait IntoNdarray {
    type Ndarray;

    // Required method
    fn into_ndarray(self) -> Self::Ndarray;
}
Available on crate feature ndarray only.
Expand description

Conversions from external library matrix views into ndarray types.

Required Associated Types§

Required Methods§

Source

fn into_ndarray(self) -> Self::Ndarray

Implementations on Foreign Types§

Source§

impl<'a, T> IntoNdarray for MatMut<'a, T>

Source§

impl<'a, T> IntoNdarray for MatRef<'a, T>

Source§

impl<'a, T, R: Dim, C: Dim, RStride: Dim, CStride: Dim> IntoNdarray for MatrixView<'a, T, R, C, RStride, CStride>

Available on crate feature nalgebra only.
Source§

impl<'a, T, R: Dim, C: Dim, RStride: Dim, CStride: Dim> IntoNdarray for MatrixViewMut<'a, T, R, C, RStride, CStride>

Available on crate feature nalgebra only.

Implementors§