boxes {caRamel} | R Documentation |
This function returns a box number for each points individual of the population
boxes(points, prec)
points |
: matrix of the objectives |
prec |
: (double, length = nobj) desired accuracy for the objectives (edges of the boxes) |
vector of numbers for the boxes. boxes[i] gives the number of the box containing points[i].
Fabrice Zaoui
# Definition of the parameters
points <- matrix(rexp(200), 100, 2)
prec <- c(1.e-3, 1.e-3)
# Call the function
res <- boxes(points, prec)