distancia1 {dprep} | R Documentation |
Finds the Manhattan distance between two vectors x and y, or the vector x and the matrix y
distancia1(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 Manhattan distance between x and y, or a row matrix representing the Euclidean distance between x and each row of y. |
Edgar Acuna
#---- Calculating distances x=rnorm(4) y=matrix(rnorm(12),4,3) distancia1(x,y[,1]) distancia1(x,y)