Skip to main content

triangular_solve

Function triangular_solve 

Source
pub fn triangular_solve(
    a: &TracedTensor,
    b: &TracedTensor,
    left_side: bool,
    lower: bool,
    transpose_a: bool,
    unit_diagonal: bool,
) -> TracedTensor
Expand description

Solve a triangular linear system.

§Examples

let x = tenferro::triangular_solve(&a, &b, true, true, false, false);