%kronecker% {calculus} | R Documentation |
Computes the generalised Kronecker product of two numeric
or character
arrays.
x %kronecker% y
x |
|
y |
|
array
.
Guidotti E (2022). "calculus: High-Dimensional Numerical and Symbolic Calculus in R." Journal of Statistical Software, 104(5), 1-37. doi:10.18637/jss.v104.i05
Other basic arithmetic:
%diff%()
,
%div%()
,
%dot%()
,
%inner%()
,
%outer%()
,
%prod%()
,
%sum%()
### numeric Kronecker product
c(1,2) %kronecker% c(2,3)
### symbolic Kronecker product
array(1:4, dim = c(2,2)) %kronecker% c("a","b")