pub fn tridiagonal_solve<O0: Into<Output>, O1: Into<Output>>(
    diagonals: O0,
    rhs: O1,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for TridiagonalSolve::new().build(diagonals, rhs, scope).