R/simplex.R
simplex_volume.Rd
Volume of a simplex
simplex_volume(data, indices = seq_len(nrow(data)), factorial = TRUE)
matrix with coordinates in rows
indices of the ncol(data) + 1 vertex points. Defaults to all rows.
ncol(data) + 1
logical indicating whether proper volumes (i.e. not only the determinant, but actually taking into account the proper 1 / n! prefactor)
volume of the simplex
data <- prcomp(laser)$x[, 1:2] plot(data, pch = 19, col = matlab.dark.palette(nrow(data))) lines(data[c(1, 84, 50, 1), ]) simplex_volume(data, indices = c(1, 84, 50)) #> [1] 212839039