View source: R/hamming.distance.R
| hamming.distance | R Documentation |
If both x and
y are vectors, hamming.distance returns the Hamming
distance (number of different elements) between this two vectors. If
x is a matrix, the Hamming distances between the rows of x
are computed and y is ignored.
hamming.distance(x, y)
x |
a vector or matrix. |
y |
an optional vector. |
x <- c(1, 0, 0)
y <- c(1, 0, 1)
hamming.distance(x, y)
z <- rbind(x,y)
rownames(z) <- c("Fred", "Tom")
hamming.distance(z)
hamming.distance(1:3, 3:1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.