Trait lax::solveh::SolvehImpl

source ·
pub trait SolvehImpl: Scalar {
    // Required method
    fn solveh(
        l: MatrixLayout,
        uplo: UPLO,
        a: &[Self],
        ipiv: &Pivot,
        b: &mut [Self],
    ) -> Result<()>;
}
Expand description

Solve symmetric/Hermitian linear equation

§LAPACK correspondance

f32f64c32c64
ssytrsdsytrschetrszhetrs

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SolvehImpl for f32

source§

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

source§

impl SolvehImpl for f64

source§

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

source§

impl SolvehImpl for c32

source§

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

source§

impl SolvehImpl for c64

source§

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

Implementors§