crossdist {SCIntRuler} | R Documentation |
Cross-Distance Matrix Calculation
Description
Computes the pairwise Euclidean distance between rows of two matrices.
Usage
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)
[Package SCIntRuler version 0.99.6 Index]