Trait rlapack::least_squares::Gels [] [src]

pub trait Gels: Sized {
    fn gels(
        layout: Layout,
        a: &mut Matrix<Self>,
        b: &mut Matrix<Self>
    ) -> Result<(), Error>; fn gels_work(
        layout: Layout,
        a: &mut Matrix<Self>,
        b: &mut Matrix<Self>,
        work: &mut [Self]
    ) -> Result<(), Error>; fn gels_work_len(
        a: &mut Matrix<Self>,
        b: &mut Matrix<Self>
    ) -> Result<usize, Error>; }

Required Methods

Implementors