vector functions(tractor.base)
vector functions()所属R语言包:tractor.base
Miscellaneous vector functions
杂项向量函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions provide the (Euclidean) length of a vector, the vector cross product or angle between two vectors.
这些函数提供(欧几里德)的向量长度的矢量叉积或两个向量之间的角度。
用法----------Usage----------
vectorLength(vector)
vectorCrossProduct(a, b)
angleBetweenVectors(v1, v2)
resolveVector(len, ...)
参数----------Arguments----------
参数:vector, v1, v2
Numeric vectors of any length.
任意长度的数字向量。
参数:a, b
Numeric 3-vectors.
数字3向量。
参数:len
The expected length of the vector.
预期长度的向量。
参数:...
Elements of the vector, to be concatenated together.
的向量的元素,被连接在一起。
值----------Value----------
For vectorLength, the Euclidean norm or length of the specified vector, given by sqrt(sum(vector^2)). For vectorCrossProduct, the vector cross product of the two specified vectors; and for angleBetweenVectors, the angle (in radians) between the two specified vectors.
对于vectorLength,欧几里德范数或指定的向量的长度,由sqrt(sum(vector^2))。对于vectorCrossProduct,两个指定向量和向量的叉积angleBetweenVectors,两个指定的向量之间的角度(弧度)。
The resolveVector function concatenates the values given in ..., and if the result is a vector of length len then it is returned. If not, NULL is returned.
resolveVector函数中给出的值连接起来...,并且如果结果是一个向量的长度len然后它返回。如果没有,NULL返回。
(作者)----------Author(s)----------
Jon Clayden
参考文献----------References----------
参见----------See Also----------
crossprod for the matrix cross product.
crossprod的矩阵交叉产品。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|