Trait faer_ext::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, 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.
source§

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

source§

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

Implementors§