Learn R Programming

tempR (version 0.10.1.1)

dist.city.block: Calculate city block distance between two matrices

Description

Calculates the city block distance between two matrices.

Usage

dist.city.block(x, y)

Value

cbdist city block distance between x and y

Arguments

x

first matrix

y

second matrix

Examples

Run this code
  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