matmult.rv(rv)
matmult.rv()所属R语言包:rv
Random Matrix Multiplication
随机矩阵乘法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Multiplies two random matrices, if they are conformable. If one argument is a vector, it will be coerced to either a row or column matrix to make the two arguments conformable. If both are vectors it will return the inner product.
两个随机矩阵相乘,如果它们是保形的。如果一个参数是一个矢量,它会被强制转换成一行或一列的矩阵,两个参数的贴合。如果两者都是矢量,它会返回的内积。
用法----------Usage----------
## S3 method for class 'rv'
x %*% y
x %**% y
参数----------Arguments----------
参数:x, y
numeric or complex matrices or vectors.
数字或复杂的矩阵或向量。
Details
详细信息----------Details----------
Optimized internally for the case of random matrix multiplied by a constant column vector.
优化的内部的情况下,随机矩阵乘以一个常数列向量。
值----------Value----------
The (distribution of the) matrix product. Use drop to get rid of dimensions which have only one level.
(分布)矩阵产品。使用drop摆脱只有一个级别的尺寸。
参考文献----------References----------
Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
参见----------See Also----------
matrix, Ops, diag.
matrix,Ops,diag。
实例----------Examples----------
x <- 1:4
(z <- x %*% x) # scalar ("inner") product (1 x 1 matrix)[标量(“内部”)的产品(1×1矩阵)]
drop(z) # as scalar[标量]
y <- diag(x)
z <- matrix(1:12, ncol = 3, nrow = 4)
y %*% z
y %*% x
x %*% z
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|