Trait ndarray_linalg::lapack_traits::triangular::Triangular_ [] [src]

pub trait Triangular_: Sized {
    fn inv_triangular(
        l: MatrixLayout,
        _: UPLO,
        _: Diag,
        a: &mut [Self]
    ) -> Result<()>; fn solve_triangular(
        al: MatrixLayout,
        bl: MatrixLayout,
        _: UPLO,
        _: Diag,
        a: &[Self],
        b: &mut [Self]
    ) -> Result<()>; }

Wraps *trtri and *trtrs

Required Methods

Implementors