Kronecker matrix-vector product function
Open
@rtrangucci is already working on this.
Since Oct 14, 2016.
feature
new function
- Dominant language
- C++
- Stars
- 839
- Forks
- 220
- Avg merge
- 2d 4h
- Merged PRs (30d)
- 14
Description
Summary:
Add a Kronecker matrix-vector product function per #60.
Description:
vector kron_matrix_vector_prod(matrix K1, matrix K2, vector V) returns
kronecker(K1, K2) %*% V by doing as.vector(K2 %*% matrix(V,dim(K2)[1],dim(K1)[1]) %*% t(K1)
Current Version:
v2.12.0
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.