kronecker_list | R Documentation |
Returns the Kronecker product from a list of matrices or vectors. Commonly used for n-mode products and various Tensor decompositions.
kronecker_list(L)
L |
list of DelayedArray |
This function is an extension of the kronecker_list
by DelayedArray.
matrix that is the Kronecker product
khatri_rao
, khatri_rao_list
,
hadamard
, hadamard_list
,
kronecker
library("DelayedRandomArray")
dlizt <- list(
'darr1' = RandomUnifArray(c(2,3,4)),
'darr2' = RandomUnifArray(c(2,3,4)))
kronecker_list(dlizt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.