Trait linfa::dataset::WithoutLapackData[][src]

pub trait WithoutLapackData<F: Float> where
    Self: Data
{ type D: Data<Elem = F>; fn without_lapack<I>(x: ArrayBase<Self, I>) -> ArrayBase<Self::D, I>
    where
        I: Dimension
, { ... } }

Associated Types

type D: Data<Elem = F>[src]

Loading content...

Provided methods

fn without_lapack<I>(x: ArrayBase<Self, I>) -> ArrayBase<Self::D, I> where
    I: Dimension
[src]

Add trait bound Lapack and Scalar to NdArray’s floating point

This is safe, because only implemented for D == Self

Loading content...

Implementations on Foreign Types

impl<F: Float> WithoutLapackData<F> for OwnedRepr<F::Lapack>[src]

type D = OwnedRepr<F>

impl<'a, F: Float> WithoutLapackData<F> for ViewRepr<&'a F::Lapack>[src]

type D = ViewRepr<&'a F>

Loading content...

Implementors

Loading content...