pub trait SolveTriangularInplace<B> {
    fn solve_triangular_inplace<'a>(
        &self,
        b: &'a mut B,
        uplo: UPLO
    ) -> Result<&'a mut B>; fn solve_triangular_into(&self, b: B, uplo: UPLO) -> Result<B> { ... } }
Expand description

Solves a triangular system

Required Methods

Solves self * x = b where self is a triangular matrix, modifying b into x in-place.

Provided Methods

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

Implementations on Foreign Types

Implementors