distancia {dprep} | R Documentation |
Finds the euclidean distance between two vectors x and y, or the vector x and the matrix y
distancia(x, y)
x |
A numeric vector |
y |
A numeric vector or matrix |
Does not support missing values.
distancia |
The result is a numeric value representing the Euclidean distance between x and y, or a row matrix representing the Euclidean distance between x and each row of y. |
Caroline Rodriguez and Edgar Acuna
#---- Calculating distances x=rnorm(4) y=matrix(rnorm(12),4,3) distancia(x,y[,1]) distancia(x,y)