找回密码
 注册
查看: 2412|回复: 0

R语言:lower.to.upper.tri.inds()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-16 18:26:43 | 显示全部楼层 |阅读模式
lower.to.upper.tri.inds(cluster)
lower.to.upper.tri.inds()所属R语言包:cluster

                                        Permute Indices for Triangular Matrices
                                         置位指数为三角矩阵

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Compute index vectors for extracting or reordering of lower or upper triangular matrices that are stored as contiguous vectors.
计算指数较低或上三角矩阵存储连续向量的提取或重新排序向量。


用法----------Usage----------


lower.to.upper.tri.inds(n)
upper.to.lower.tri.inds(n)



参数----------Arguments----------

参数:n
integer larger than 1.
整数大于1。


值----------Value----------

integer vector containing a permutation of 1:N where N = n(n-1)/2.
整数向量包含了1:NN = n(n-1)/2的排列。


注意----------Note----------

these functions are mainly for internal use in the cluster package, and may not remain available (unless we see a good reason).
这些功能主要是为集群中的包的内部使用,并可能不会保持可用(除非我们看到一个很好的理由)。


参见----------See Also----------

upper.tri, lower.tri with a related
upper.tri,lower.tri与相关


举例----------Examples----------


m5 <- matrix(NA,5,5)
m <- m5; m[lower.tri(m)] <- upper.to.lower.tri.inds(5); m
m <- m5; m[upper.tri(m)] <- lower.to.upper.tri.inds(5); m

stopifnot(lower.to.upper.tri.inds(2) == 1,
          lower.to.upper.tri.inds(3) == 1:3,
          upper.to.lower.tri.inds(3) == 1:3,
     sort(upper.to.lower.tri.inds(5)) == 1:10,
     sort(lower.to.upper.tri.inds(6)) == 1:15)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-23 21:15 , Processed in 0.031006 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表