Setting Pareto FronI want to set the Pareto Front using genetic algorithm
9 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
Alan Weiss
2023 年 1 月 11 日
編集済み: Alan Weiss
2023 年 1 月 11 日
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Multiobjective Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!