Trait lax::LeastSquaresSvdDivideConquer_[][src]

pub trait LeastSquaresSvdDivideConquer_: Scalar {
    fn least_squares(
        a_layout: MatrixLayout,
        a: &mut [Self],
        b: &mut [Self]
    ) -> Result<LeastSquaresOutput<Self>>;
fn least_squares_nrhs(
        a_layout: MatrixLayout,
        a: &mut [Self],
        b_layout: MatrixLayout,
        b: &mut [Self]
    ) -> Result<LeastSquaresOutput<Self>>; }

Wraps *gelsd

Required methods

fn least_squares(
    a_layout: MatrixLayout,
    a: &mut [Self],
    b: &mut [Self]
) -> Result<LeastSquaresOutput<Self>>
[src]

fn least_squares_nrhs(
    a_layout: MatrixLayout,
    a: &mut [Self],
    b_layout: MatrixLayout,
    b: &mut [Self]
) -> Result<LeastSquaresOutput<Self>>
[src]

Loading content...

Implementations on Foreign Types

impl LeastSquaresSvdDivideConquer_ for f64[src]

impl LeastSquaresSvdDivideConquer_ for f32[src]

impl LeastSquaresSvdDivideConquer_ for c64[src]

impl LeastSquaresSvdDivideConquer_ for c32[src]

Loading content...

Implementors

Loading content...