Function extendr_api::prelude::sparse::linalg::matmul::sparse_dense_matmul

pub fn sparse_dense_matmul<I, E, LhsE, RhsE>(
    acc: impl As2DMut<E>,
    lhs: SparseColMatRef<'_, I, LhsE>,
    rhs: impl As2D<RhsE>,
    alpha: Option<E>,
    beta: E,
    parallelism: Parallelism<'_>,
)
where I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>,
Expand description

Multiplies a sparse matrix lhs by a dense matrix rhs, and stores the result in acc. See faer::linalg::matmul::matmul for more details.

ยงNote

Allows unsorted matrices.