View source: R/computeCumulatedPathLengths.R
computeCumulatedPathLengths | R Documentation |
Given a grid of points in the search space, along with their corresponding multi-objective gradients, this function will compute (for each point of the grid) the length of the cumulated path from a point towards its attracting local efficient point.
computeCumulatedPathLengths(
centers,
gradients,
dims,
local.efficient.ids = numeric(0),
prec.vector.length = 0.001,
prec.norm = 1e-06,
cumulate.gradient.length = TRUE,
fix.diagonals = FALSE,
check.data = TRUE
)
centers |
[ |
gradients |
[ |
local.efficient.ids |
[ |
prec.vector.length |
[ |
prec.norm |
[ |
cumulate.gradient.length |
[ |
fix.diagonals |
[ |
check.data |
[ |
[data.frame]
Returns a data.frame
, which appends the cumulated path lengths to the points
provided by centers
.
ATTENTION: Only turn off the sanity checks (check.data = FALSE
),
if you can ensure that all input parameters are provided in the correct format.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.