powered by
Computes the pairwise Euclidean distance between rows of two matrices.
crossdist(m1, m2)
Numeric matrix of distances.
Numeric matrix.
mat1 <- matrix(1:4, ncol = 2) mat2 <- matrix(5:8, ncol = 2) dist_matrix <- crossdist(mat1, mat2)
Run the code above in your browser using DataLab