conversion from fmincom to NSGA -II
조회 수: 1(최근 30일)
표시 이전 댓글
I want to convert fmincom to NSGA -II algorithm
답변(1개)
Sam Chak
2022년 11월 25일
If you have written your own NSGA-II algorithm in a MALTAB function file, for example, called nsga2.m, then you can replace this line
[x, aard] = fmincon(costfun, P0, [], [], [], [], lb, ub)
and insert your NSGA-II algorithm with this line:
[x, aard] = nsga2(costfun, param1, param2, param3, ...)
댓글 수: 0
참고 항목
범주
Find more on Genetic Algorithm in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!