Description Usage Arguments Details Value Note Author(s) References See Also Examples
Computes the product A %*% x
, where A
is a
Kronecker product of matrices.
1 |
A |
A list that contains the matrices, preferably of class Matrix. |
x |
A conformable numeric vector. |
transpose |
If |
The matrices in the list A
should be of the class
Matrix
. This allows the user to take advantage of their
special structure (eg sparsity).
A vector which equals (A[[1]] %x% ... %x% A[[length(A)]])
%*% x
.
The algorithm (given in the reference) is orders of magnitude more efficient (both in terms of CPU and memory usage) than computing the Kronecker product and doing the matrix multiplication.
Tamas K Papp <tpapp@princeton.edu>
Paul E. Buis and Wayne R. Dyksen. Efficient Vector and Parallel Manipulation of Tensor Products. ACM Transactions on Mathematical Software, Vol. 22, No. 1, March 1996, Pages 18–23.
klin.solve
, klin.preparels
,
klin.ls
, klin.klist
.
1 2 3 4 5 6 7 8 9 10 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.