Matrix.pdMat(nlme)
Matrix.pdMat()所属R语言包:nlme
Assign Matrix to a pdMat Object
到pdMat对象分配矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The positive-definite matrix represented by object is replaced by value. If the original matrix had row and/or column names, the corresponding names for value can either be NULL, or a permutation of the original names.
正定矩阵,代表由objectvalue取代。如果原始矩阵的行和/或列的名称,相应的名称value是NULL,或置换原来的名称。
用法----------Usage----------
## S3 replacement method for class 'pdMat'
matrix(object) <- value
参数----------Arguments----------
参数:object
an object inheriting from class pdMat, representing a positive definite matrix.
一个对象类pdMat代表正定矩阵,继承。
参数:value
a matrix with the new values to be assigned to the positive-definite matrix represented by object. Must have the same dimensions as as.matrix(object).
被分配到正定矩阵object代表的新的价值观的矩阵。必须具有相同的尺寸为as.matrix(object)。
值----------Value----------
a pdMat object similar to object, but with its coefficients modified to produce the matrix in value.
一个pdMat对象类似object,但其与修改,以产生矩阵value系数。
作者(S)----------Author(s)----------
Jose Pinheiro and Douglas Bates <a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>
参见----------See Also----------
pdMat,"matrix<-"
pdMat,"matrix<-"
举例----------Examples----------
pd1 <- pdSymm(diag(3))
matrix(pd1) <- diag(1:3)
pd1
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|