num.delaunay.tri: Number of Delaunay triangles based on a 2D data set

View source: R/AuxDelaunay.R

num.delaunay.triR Documentation

Number of Delaunay triangles based on a 2D data set

Description

Returns the number of Delaunay triangles based on the 2D set of points Yp. See (\insertCiteokabe:2000,sinclair:2016;textualpcds) for more on Delaunay triangulation and the corresponding algorithm.

Usage

num.delaunay.tri(Yp)

Arguments

Yp

A set of 2D points which constitute the vertices of Delaunay triangles.

Value

Number of Delaunay triangles based on Yp points.

Author(s)

Elvan Ceyhan

References

\insertAllCited

See Also

plotDelaunay.tri

Examples

ny<-10

set.seed(1)
Yp<-cbind(runif(ny,0,1),runif(ny,0,1))

num.delaunay.tri(Yp)


elvanceyhan/pcds documentation built on June 29, 2023, 8:12 a.m.