Trait ndarray_linalg::triangular::TriangularMatrix [] [src]

pub trait TriangularMatrix: Matrix + SquareMatrix {
    fn solve_upper(&self, Self::Vector) -> Result<Self::Vector, LinalgError>;
    fn solve_lower(&self, Self::Vector) -> Result<Self::Vector, LinalgError>;
}

Required Methods

solve a triangular system with upper triangular matrix

solve a triangular system with lower triangular matrix

Implementors