pub trait SolveTriangularInplace<B> {
// Required method
fn solve_triangular_inplace<'a>(
&self,
b: &'a mut B,
uplo: UPLO,
) -> Result<&'a mut B>;
// Provided method
fn solve_triangular_into(&self, b: B, uplo: UPLO) -> Result<B> { ... }
}
Expand description
Solves a triangular system
Required Methods§
Provided Methods§
sourcefn solve_triangular_into(&self, b: B, uplo: UPLO) -> Result<B>
fn solve_triangular_into(&self, b: B, uplo: UPLO) -> Result<B>
Solves self * x = b
where self
is a triangular matrix, consuming b
.