Computes the pairwise Euclidean distance between rows of two matrices.

crossdist(m1, m2)

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)