inter_geom {betapart}R Documentation

Internal function to compute convexhull volume

Description

Estimation of the convexhull volume of the intersection of two hypervolumes based on the intersectn function

Usage

inter_geom(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 halfspacen.

tol

Tolerance, see intersectn.

fp

Coordinates of feasible point (NULL).

qhull.opt

qhull options.

Value

the convex hull volume of the intersection of two hypervolumes

See Also

inter_rcdd, intersectn

Examples

## Not run: mat1 <- matrix(runif(30), 10)
mat2 <- matrix(runif(30), 10)
inter_geom(mat1, mat2)
## End(Not run)

[Package betapart version 1.6 Index]