dist_wrt: Compute Distances with respect to a certain Point

View source: R/svs.r

dist_wrtR Documentation

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

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")

svs documentation built on June 24, 2024, 5:07 p.m.