Scilab 5.3.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
pareto_filter
A function which extracts non dominated solution from a set
Calling Sequence
[F_out,X_out,Ind_out] = pareto_filter(F_in,X_in)
Arguments
- F_in
the set of multi-objective function values from which we want to extract the non dominated solutions.
- X_in
the associated values in the parameters space.
- F_out
the set of non dominated multi-objective function values.
- X_out
the associated values in the parameters space.
- Ind_out
the set of indexes of the non dominated individuals selected from the set X_in.
Description
This function applies a Pareto filter to extract non dominated solutions from a set of values.
See Also
Authors
- Yann COLLETTE
ycollet@freesurf.Fr
<< optim_nsga2 | Genetic Algorithms | selection_ga_elitist >> |