Computes the pairwise Euclidean distance between rows of two matrices.
Arguments
- m1
Numeric matrix.
- m2
Numeric matrix.
Value
Numeric matrix of distances.
Examples
mat1 <- matrix(1:4, ncol = 2)
mat2 <- matrix(5:8, ncol = 2)
dist_matrix <- crossdist(mat1, mat2)