buildExhaustive: Prepare data for an exhaustive search

Description Usage Arguments Value Examples

View source: R/buildExhaustive.R

Description

Transform data in preparation for an exhaustive (i.e., brute-force) search.

Usage

1
buildExhaustive(X, transposed = FALSE, distance = c("Euclidean", "Manhattan"))

Arguments

X

A numeric matrix where rows correspond to data points and columns correspond to variables (i.e., dimensions).

transposed

Logical scalar indicating whether X is transposed, i.e., rows are variables and columns are data points.

distance

String specifying the type of distance to use.

Value

An ExhaustiveIndex object containing:

Examples

1
2
3
Y <- matrix(rnorm(100000), ncol=20)
out <- buildExhaustive(Y)
out

BiocNeighbors documentation built on Dec. 9, 2020, 2:01 a.m.