L2Distance(RnavGraphImageData)
L2Distance()所属R语言包:RnavGraphImageData
Euclidean distances between vector in A and B
向量A和B之间的欧氏距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This fully vectorized (VERY FAST!) m-file computes the Euclidean distance between two vectors by:
这充分量化的(非常快)的m-file计算两个向量之间的欧氏距离:
||A-B|| = sqrt ( ||A||^2 + ||B||^2 - 2*A.B )
| | A-B | | = SQRT(| |甲| | ^ 2 + | |乙| | ^ 2 - 2 * A.B)
用法----------Usage----------
L2Distance(a, b, df = 0)
参数----------Arguments----------
参数:a
Either a matrix or a vector.
一个矩阵或矢量。
参数:b
Either a matrix or a vector.
一个矩阵或矢量。
参数:df
df = 1, force diagonals to be zero; 0 (default), do not force.
DF = 1,力对角线为零; 0(默认),不要用力。
值----------Value----------
For A - (DxM) matrix B - (DxN) matrix
对于A - (DXM)矩阵B - (DXN)矩阵
L2Distance returns a matrix of size (MxN).
L2Distance返回一个矩阵的大小(MXN)。
注意----------Note----------
This function was transcribed by the package maintainers from a Matlab to an R function.
此功能是转录由软件包维护者从MATLAB到R功能。
(作者)----------Author(s)----------
Roland Bunschoten
实例----------Examples----------
A = matrix(runif(400*100),ncol=100)
B = matrix(runif(400*200),ncol=200)
d = L2Distance(A,B)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|