Trait ndarray_linalg::lapack_traits::solveh::Solveh_[][src]

pub trait Solveh_: Sized {
    unsafe fn bk(_: MatrixLayout, _: UPLO, a: &mut [Self]) -> Result<Pivot>;
unsafe fn invh(
        _: MatrixLayout,
        _: UPLO,
        a: &mut [Self],
        _: &Pivot
    ) -> Result<()>;
unsafe fn solveh(
        _: MatrixLayout,
        _: UPLO,
        a: &[Self],
        _: &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

impl Solveh_ for f64
[src]

impl Solveh_ for f32
[src]

Implementors