Function extendr_api::prelude::modules::core::inverse::invert_lower_triangular
source · pub fn invert_lower_triangular<E>(
dst: MatMut<'_, E>,
src: MatRef<'_, E>,
parallelism: Parallelism<'_>,
)where
E: ComplexField,Expand description
Computes the inverse of the lower triangular matrix src and stores the
lower triangular part of the result to dst.
§Panics
Panics if src and dst have mismatching dimensions, or if they are not square.