solve_upper_triangular_in_place

Function solve_upper_triangular_in_place 

Source
pub fn solve_upper_triangular_in_place<I: Index, T: ComplexField>(
    triu: SparseColMatRef<'_, I, T>,
    conj_triu: Conj,
    rhs: MatMut<'_, T>,
    par: Par,
)
Expand description

assuming triu is an upper triangular matrix, solves the equation triu * x = rhs, and stores the result in rhs, implicitly conjugating triu if needed

ยงnote

the matrix indices need not be sorted, but the diagonal element is assumed to be the last stored element in each column.