%kronecker% {calculus}R Documentation

Numerical and Symbolic Kronecker Product

Description

Computes the generalised Kronecker product of two numeric or character arrays.

Usage

x %kronecker% y

Arguments

x

numeric or character array.

y

numeric or character array.

Value

array.

References

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

See Also

Other basic arithmetic: %diff%(), %div%(), %dot%(), %inner%(), %outer%(), %prod%(), %sum%()

Examples

### numeric Kronecker product 
c(1,2) %kronecker% c(2,3)

### symbolic Kronecker product 
array(1:4, dim = c(2,2)) %kronecker% c("a","b")


[Package calculus version 1.0.1 Index]