Setting Pareto FronI want to set the Pareto Front using genetic algorithm
조회 수: 1 (최근 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!