Multiobjective optimization with polygon boundary
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a fixed designed space. I have the k values of conhull. How do I implement this boundary for the multiobjective optimization problem?

댓글 수: 0
답변 (2개)
Walter Roberson
2025년 1월 22일
convex hulls can always be represented as a series of linear inequalities, so you would use the "A" and "b" matrices
A = [....]
b = [...]
sol = gamultiobj(FUNCTION, num_parameters, A, b)
참고 항목
카테고리
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!