Simplex Data
class SimplexData(val originalPoint: DoubleArray, val fractionalParts: DoubleArray, val sortedFractionIndices: IntArray, val sortedFractions: List<Double>, val vertices: List<DoubleArray>, val weights: DoubleArray)(source)
This class represents the data structure for a computed simplex. The simplex is a set of vertices, each with a weight.
Parameters
original Point
the point that started the simplex
fractional Parts
the fractional parts of the original point
sorted Fraction Indices
the indices of the sorted fractions
sorted Fractions
the fractional parts sorted
vertices
the vertices that make up the simplex
weights
the weights of the vertices
Constructors
Link copied to clipboard
constructor(originalPoint: DoubleArray, fractionalParts: DoubleArray, sortedFractionIndices: IntArray, sortedFractions: List<Double>, vertices: List<DoubleArray>, weights: DoubleArray)