Learn R Programming

svs (version 3.0.0)

dist_wrt: Compute Distances with respect to a certain Point

Description

A function for computing (euclidean) distances with respect to a certain specified point.

Usage

dist_wrt(x, wrt = NULL)

Arguments

x

A numeric matrix (containing coordinates).

wrt

A specification of the point with respect to which to compute all distances: can be either a vector or the character label of one of the row levels in x. If NULL or NA, then the origin (i.e. the point c(0 , 0, 0,... )) is taken as the value.

Value

A matrix (containing distances between the rows of x and wrt).

Examples

Run this code
# NOT RUN {
SndT_Fra <- read.table(system.file("extdata", "SndT_Fra.txt", package = "svs"),
   header = TRUE, sep = "\t", quote = "\"", encoding = "UTF-8",
   stringsAsFactors = FALSE)
sca.SndT_Fra <- fast_sca(SndT_Fra)
dist_wrt(sca.SndT_Fra$pos1, wrt = "beginnen")
# }

Run the code above in your browser using DataLab