kronecker-methods | R Documentation |
Returns the Kronecker product of two Tensors. Commonly used for n-mode products and various Tensor decompositions.
kronecker(darr1, darr2)
## S4 method for signature 'DelayedArray,DelayedArray'
kronecker(darr1, darr2)
darr1 |
first DelayedArray object |
darr2 |
second DelayedArray object |
matrix that is the Kronecker product
khatri_rao
, khatri_rao_list
,
hadamard
, hadamard_list
,
kronecker_list
library("DelayedRandomArray")
darr1 <- RandomUnifArray(c(2,3))
darr2 <- RandomUnifArray(c(4,5))
kronecker(darr1, darr2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.