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

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

Required methods

unsafe fn bk(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<Pivot>[]

Bunch-Kaufman: wrapper of *sytrf and *hetrf

unsafe fn invh(
    l: MatrixLayout,
    uplo: UPLO,
    a: &mut [Self],
    ipiv: &Pivot
) -> Result<()>
[]

Wrapper of *sytri and *hetri

unsafe fn solveh(
    l: MatrixLayout,
    uplo: UPLO,
    a: &[Self],
    ipiv: &Pivot,
    b: &mut [Self]
) -> Result<()>
[]

Wrapper of *sytrs and *hetrs

Implementations on Foreign Types

impl Solveh_ for f64[src][]

impl Solveh_ for f32[src][]

Implementors

impl Solveh_ for c32[src][]

impl Solveh_ for c64[src][]