pub fn sparse_kronecker<F>(
a: &CsrMatrix<F>,
b: &CsrMatrix<F>,
) -> SparseResult<CsrMatrix<F>>Expand description
Compute the Kronecker product C = A kron B.
If A is (m x n) and B is (p x q), then C is (mp x nq).
pub fn sparse_kronecker<F>(
a: &CsrMatrix<F>,
b: &CsrMatrix<F>,
) -> SparseResult<CsrMatrix<F>>Compute the Kronecker product C = A kron B.
If A is (m x n) and B is (p x q), then C is (mp x nq).