Setting Pareto FronI want to set the Pareto Front using genetic algorithm

2 vues (au cours des 30 derniers jours)
Lorenzo Pasinato
Lorenzo Pasinato le 10 Jan 2023
Modifié(e) : Alan Weiss le 11 Jan 2023
I'm using multiobjective genetic algorithm to optimize a fitness function. When I plot the Pareto Front, I obtain few points on the chart. How can I set the plot to have more points plotted?

Réponses (1)

Alan Weiss
Alan Weiss le 11 Jan 2023
Modifié(e) : Alan Weiss le 11 Jan 2023
You can take a larger population. For example,
options = optimoptions('gamultiobj','PopulationSize',300);
Make sure to pass options in your call to gamultiobj.
You might also obtain a better-looking curve by using paretosearch instead of gamultiobj.
Alan Weiss
MATLAB mathematical toolbox documentation

Catégories

En savoir plus sur Multiobjective Optimization dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by