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