pub fn mul_csr_dense<F, B>(a: &CsrMatrix<F>, b: &B) -> RowMajorMatrix<F>where F: Field, B: Matrix<F> + Sync,
Compute C = A * B, where A in a CSR matrix and B is a dense matrix.
C = A * B
A
B
Panics if dimensions of input matrices don’t match.