pub fn solve_in_place_with_conj<E>(
    cholesky_factor: MatRef<'_, E>,
    conj_lhs: Conj,
    rhs: MatMut<'_, E>,
    parallelism: Parallelism<'_>,
    stack: PodStack<'_>,
)
where E: ComplexField,
Expand description

Given the Cholesky factor of a matrix $A$ and a matrix $B$ stored in rhs, this function computes the solution of the linear system: $$\text{Op}_A(A)X = B.$$

$\text{Op}_A$ is either the identity or the conjugation depending on the value of conj_lhs.

The solution of the linear system is stored in rhs.

ยงPanics

Panics if any of these conditions is violated:

  • cholesky_factor must be square of dimension n.
  • rhs must have n rows.

This can also panic if the provided memory in stack is insufficient (see solve_in_place_req).