Learn R Programming

EnvNJ (version 0.1.3)

vdis: Compute Pairwise Distances Between Vectors

Description

Computes pairwise distances between vectors.

Usage

vdis(cos)

Arguments

cos

a square upper triangular matrix where cos(i,j) is the cosine between the vector i and j.

Value

A triangular matrix with the distances.

Details

Cosines are standard measure of vector similarity, and can be converted into distance by dij = -log( (1 + cos(i,j) )/2).

See Also

vcos()

Examples

Run this code
# NOT RUN {
data(bovids)
vectors = otu.space(bovids[, 7:11])
cosData = vcos(vectors)
disData = suppressWarnings(vdis(cosData))
# }

Run the code above in your browser using DataLab