Simple helper function for generating a simplex volume matrix E (i.e. volume of simplex = det(E)/p-1!) of the following structure: | 1 1 ... 1 | | e_1 e_2 ... e_p | Where e_i is an i-th vertex point of the simplex.
Matrix whose rows will be included in the simplex. This matrix should be reduced using using PCA or some other process so that it has p-1 columns before calling this function.
Locations of the rows in the dataset to use as simplex vertecies
Type of simplex matrix to generate. Can be one of:
"affine"
: Affine simplex matrix pxp
, i.e. vertices matrix padded with 1s
"vector"
: Vector simplex matrix (p-1)x(p-1)
, i.e. vertices matrix with the first row subtracted
"gram"
: Gram-matrix simplex matrix (p-1)x(p-1)
, i.e. squared 'vector' simplex matrix
matrix
A simplex volume matrix E, a p x p matrix whose first row contains only 1s
absolute value of determinant of x