gputools (version 1.1)

gpuDist: Compute Distances Between Vectors on a GPU

Description

This function computes the distance between each vector of the 'points' argument using the metric specified by 'method'.

Usage

gpuDist(points, method = "euclidean", p = 2.0)

Arguments

points
a matrix of floating point numbers in which each row is a vector in $R^n$ space where $n$ is ncol(points).
method
a string representing the name of the metric to use to calculate the distance between the vectors of 'points'. Currently supported values are: "binary", "canberra", "euclidean", "manhattan", "maximum", and "minkowski".
p
a floating point parameter for the Minkowski metric.

Value

a class of type "dist" containing floating point numbers representing the distances between vectors from the 'points' argument.

See Also

dist

Examples

Run this code
numVectors <- 5
dimension <- 10
Vectors <- matrix(runif(numVectors*dimension), numVectors, dimension)
gpuDist(Vectors, "euclidean")
gpuDist(Vectors, "maximum")
gpuDist(Vectors, "manhattan")
gpuDist(Vectors, "minkowski", 4)

Run the code above in your browser using DataLab