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