pub fn apply_block_householder_sequence_on_the_left_in_place_with_conj<E>(
    householder_basis: MatRef<'_, E>,
    householder_factor: MatRef<'_, E>,
    conj_lhs: Conj,
    matrix: MatMut<'_, E>,
    parallelism: Parallelism<'_>,
    stack: PodStack<'_>,
)
where E: ComplexField,
Expand description

Computes the product of a sequence of block Householder transformations given by householder_basis and householder_factor, multiplied by matrix, and stores the result in matrix.