pub trait SolveTriangular<B> {
    type Output;

    fn solve_triangular(&self, b: &B, uplo: UPLO) -> Result<Self::Output>;
}
Expand description

Solves a triangular system

Required Associated Types

Required Methods

Solves self * x = b where self is a triangular matrix.

Implementations on Foreign Types

Implementors