pub trait SolvehImpl: Scalar {
    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

Implementations on Foreign Types

Implementors