Trait lax::Solveh_[][src]

pub trait Solveh_: Sized {
    fn bk(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<Pivot>;
fn invh(
        l: MatrixLayout,
        uplo: UPLO,
        a: &mut [Self],
        ipiv: &Pivot
    ) -> Result<()>;
fn solveh(
        l: MatrixLayout,
        uplo: UPLO,
        a: &[Self],
        ipiv: &Pivot,
        b: &mut [Self]
    ) -> Result<()>; }

Required methods

Bunch-Kaufman: wrapper of *sytrf and *hetrf

Wrapper of *sytri and *hetri

Wrapper of *sytrs and *hetrs

Implementations on Foreign Types

Implementors