powered by
This function returns a box number for each points individual of the population
boxes(points, prec)
vector of numbers for the boxes. boxes[i] gives the number of the box containing points[i].
: matrix of the objectives
: (double, length = nobj) desired accuracy for the objectives (edges of the boxes)
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)
Run the code above in your browser using DataLab