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

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

Bunch-Kaufman: wrapper of *sytrf and *hetrf

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

Wrapper of *sytri and *hetri

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

Wrapper of *sytrs and *hetrs

Loading content...

Implementations on Foreign Types

impl Solveh_ for f64[src]

impl Solveh_ for f32[src]

impl Solveh_ for c64[src]

impl Solveh_ for c32[src]

Loading content...

Implementors

Loading content...