pdist {riverdist} | R Documentation |
Pythagorean Distance
Description
Pythagorean distance between two points. Called internally.
Usage
pdist(p1, p2)
Arguments
p1 |
X-Y coordinates of point 1 |
p2 |
X-Y coordinates of point 2 |
Value
Distance (numeric)
Author(s)
Matt Tyers
Examples
point1 <- c(1,3)
point2 <- c(4,7)
pdist(point1,point2)
[Package riverdist version 0.16.3 Index]