dist_wrt {svs} | R 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 |
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")
[Package svs version 3.1.1 Index]