transformations(shapes)
transformations()所属R语言包:shapes
Calculate similarity transformations
计算相似变换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate similarity transformations between configurations in two arrays.
计算相似配置在两个数组之间的转换。
用法----------Usage----------
transformations(Xrotated,Xoriginal)
参数----------Arguments----------
参数:Xrotated
Input k x m x n real array of the Procrustes transformed configurations, where k is the number of points, m is the number of dimensions, and n is the sample size.
输入kxmxn实时阵列的的Procrustes改变配置,其中k是的点的数量,m是维度的数目,n为样本大小。
参数:Xoriginal
Input k x m x n real array of the Procrustes original configurations, where k is the number of points, m is the number of dimensions, and n is the sample size.
输入kxmxn真正的Procrustes原始配置数组,其中k是的点的数量,m是维度的数目,和n是样本大小。
值----------Value----------
A list with components
组件列表
参数:translation
The translation parameters
转换参数
参数:scale
The scale parameters
尺度参数
参数:rotation
The rotation parameters
旋转参数
(作者)----------Author(s)----------
Ian Dryden
参考文献----------References----------
参见----------See Also----------
procGPA
procGPA
实例----------Examples----------
#2D example : female and male Gorillas (cf. Dryden and Mardia, 1998)[2D例如:男性和女性的大猩猩(参见德莱顿和Mardia的,1998年)]
data(gorf.dat)
Xorig <- gorf.dat
Xrotated <- procGPA(gorf.dat)$rotated
transformations(Xrotated,Xorig)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|