Function reconstruct_lower_in_place
pub fn reconstruct_lower_in_place<E>(
cholesky_factor: MatMut<'_, E>,
parallelism: Parallelism<'_>,
stack: PodStack<'_>,
)where
E: ComplexField,
Expand description
Computes the lower triangular part of the reconstructed matrix, given its Cholesky
decomposition, and stores the result in cholesky_factor
.
ยงPanics
- Panics if
cholesky_factor
is not a square matrix.
This can also panic if the provided memory in stack
is insufficient (see
reconstruct_lower_in_place_req
).