Need how to implement the adaptive parameter tuning feature of WSO in MATLAB, specifically the morale (Wi) update
조회 수: 1 (최근 30일)
이전 댓글 표시
I need to implement the adaptive parameter tuning feature of WSO in MATLAB, specifically the morale (Wi) update
댓글 수: 0
채택된 답변
recent works
2023년 12월 31일
편집: Walter Roberson
2023년 12월 31일
I think war strategy optimization you are working
Use vectorized operations and logical indexing to update morale values for all soldiers simultaneously
Wi = Wi0 * exp(-alpha * (1:max_iter)./max_iter);
Wi = Wi(soldier_iter);
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!