pub trait SolveTriangular<A, S, D>where
    A: Scalar + Lapack,
    S: Data<Elem = A>,
    D: Dimension,
{ fn solve_triangular(
        &self,
        uplo: UPLO,
        diag: Diag,
        b: &ArrayBase<S, D>
    ) -> Result<Array<A, D>>; }
Expand description

solve a triangular system with upper triangular matrix

Required Methods

Implementations on Foreign Types

Implementors