TernaryDistance | R Documentation |
The distances between ternary coordinate p and a set of ternary coordinates C.
TernaryDistance(p, C)
p |
A vector of ternary coordinates [p1, p2, p3]. |
C |
n by 3 matrix of ternary coordinates [p1, p2, p3](i) for i=1,...,n. |
A numeric vector of distances between coordinate p and all coordinates in C.
https://en.wikipedia.org/wiki/Barycentric_coordinate_system#Distance_between_points
# NOTE: only intended for internal use and not part of the API
p <- c(0.5, 0.2, 0.3)
C <- prop.table(matrix(runif(3*10), ncol = 3), 1)
tricolore:::TernaryDistance(p, C)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.