kronecker(base)
kronecker()所属R语言包:base
Kronecker Products on Arrays
阵列上的Kronecker积
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the generalised kronecker product of two arrays, X and Y. kronecker(X, Y) returns an array
计算两个阵列,X和Y广义Kronecker积。 kronecker(X, Y)返回一个数组
用法----------Usage----------
kronecker(X, Y, FUN = "*", make.dimnames = FALSE, ...)
X %x% Y
参数----------Arguments----------
参数:X
A vector or array.
向量或数组。
参数:Y
A vector or array.
向量或数组。
参数:FUN
a function; it may be a quoted string.
一个函数,它可能是一个带引号的字符串。
参数:make.dimnames
Provide dimnames that are the product of the dimnames of X and Y.
提供dimnames是的X和Ydimnames的产品。
参数:...
optional arguments to be passed to FUN.
可选参数被传递到FUN。
Details
详情----------Details----------
If X and Y do not have the same number of dimensions, the smaller array is padded with dimensions of size one. The returned array comprises submatrices constructed by taking X one term at a time and expanding that term as FUN(x, Y, ...).
如果X和Y不具有相同的维数,较小的阵列尺寸大小的一个填充。返回的数组包括采取X一学期一次,并扩大为FUN(x, Y, ...)这个词的构造子矩阵。
%x% is an alias for kronecker (where FUN is hardwired to "*").
%x%是一个别名kronecker(其中FUN硬"*")。
作者(S)----------Author(s)----------
Jonathan Rougier
参考文献----------References----------
Matrix Algebra Useful for Statistics. John Wiley and Sons.
参见----------See Also----------
outer, on which kronecker is built and %*% for usual matrix multiplication.
outer,kronecker建%*%通常的矩阵乘法。
举例----------Examples----------
# simple scalar multiplication[简单的标量乘法]
( M <- matrix(1:6, ncol=2) )
kronecker(4, M)
# Block diagonal matrix:[块对角矩阵:]
kronecker(diag(1, 3), M)
# ask for dimnames[要求为dimnames]
fred <- matrix(1:12, 3, 4, dimnames=list(LETTERS[1:3], LETTERS[4:7]))
bill <- c("happy" = 100, "sad" = 1000)
kronecker(fred, bill, make.dimnames = TRUE)
bill <- outer(bill, c("cat"=3, "dog"=4))
kronecker(fred, bill, make.dimnames = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|