Trait ndarray_linalg::triangular::SolveTriangular [] [src]

pub trait SolveTriangular<Rhs>: Matrix + SquareMatrix {
    type Output;
    fn solve_upper(&self, _: Rhs) -> Result<Self::Output, LinalgError>;
    fn solve_lower(&self, _: Rhs) -> Result<Self::Output, LinalgError>;
}

Associated Types

Required Methods

solve a triangular system with upper triangular matrix

solve a triangular system with lower triangular matrix

Implementors