pub fn solve_unit_lower_triangular_transpose_in_place<I: Index, T: ComplexField>(
tril: SparseColMatRef<'_, I, T>,
conj_tril: Conj,
rhs: MatMut<'_, T>,
par: Par,
)Expand description
assuming tril is a lower triangular matrix, solves the equation tril.transpose() * x = rhs, and stores the result in rhs, implicitly conjugating tril if needed
ยงnote
the matrix indices need not be sorted, but the diagonal element is assumed to be the first stored element in each column.