pub trait Triangular_: Scalar {
    fn solve_triangular(
        al: MatrixLayout,
        bl: MatrixLayout,
        uplo: UPLO,
        d: Diag,
        a: &[Self],
        b: &mut [Self]
    ) -> Result<()>; }
Expand description

Wraps *trtri and *trtrs

Required Methods

Implementations on Foreign Types

Implementors