inter_geom_coord {betapart} | R Documentation |
Internal function to compute convexhull volume and vertice coordinates
Description
Estimation of the convexhull volume and the vertices of the intersection of two hypervolumes based on geometry functions
Usage
inter_geom_coord(
ps1,
ps2,
options = "Tv",
tol = 0,
fp = NULL,
qhull.opt = "n FA"
)
Arguments
ps1 |
A matrix of coordinates. |
ps2 |
A second matrix of coordinates. |
options |
Options pass to |
tol |
Tolerance, see |
fp |
Coordinates of feasible point (NULL). |
qhull.opt |
qhull options. |
Value
A list of 2 elements.
- coord
the vertice coordinates
- vol
a volume corresponding to the intersection of the two hypervolumes
See Also
Examples
## Not run: mat1 <- matrix(runif(30), 10)
mat2 <- matrix(runif(30), 10)
inter_geom_coord(mat1, mat2)
## End(Not run)
[Package betapart version 1.6 Index]