powered by
Calculates the city block distance between two matrices.
dist.city.block(x, y)
cbdist city block distance between x and y
x
y
first matrix
second matrix
x <- matrix(0, nrow = 5, ncol = 7) y <- matrix(1, nrow = 5, ncol = 7) dist.city.block(x, y) y <- matrix(c(rep(0, 15), rep(1, 20)), nrow = 5, ncol = 7) dist.city.block(x, y)
Run the code above in your browser using DataLab