Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Find the Pareto-minimal points in a set of numeric vectors
ResourceFunction["ParetoListMinima"][points] gives the subset of points that are Pareto-minimal. |
Find the Pareto minima of five points in 3D:
| In[1]:= |
| Out[1]= |
Create a list of 20 random integer vectors in 3D:
| In[2]:= |
| Out[3]= |
Compute the Pareto minima for this set:
| In[4]:= |
| Out[4]= |
Compute the Pareto minima for a set of 200 points in 2D:
| In[5]:= | ![]() |
| Out[9]= |
Show the Pareto minima connected by segments, along with the other points:
| In[10]:= | ![]() |
| Out[10]= | ![]() |
Pareto-maximal points are defined in the same way as minimal points, except using GreaterEqual as the component-wise inequality. One can use ParetoListMinima in a simple way to compute the Pareto-maximal points:
| In[11]:= | ![]() |
| Out[12]= |
Show the Pareto maxima connected by segments, along with the other points:
| In[13]:= | ![]() |
| Out[13]= | ![]() |
Compute Pareto minima for 200 points in 3D:
| In[14]:= | ![]() |
| Out[18]= |
Show the Pareto maxima, the planar mesh they define, and the non-minima above them:
| In[19]:= |
| Out[19]= | ![]() |
This work is licensed under a Creative Commons Attribution 4.0 International License