필터 지우기
필터 지우기

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

채택된 답변

recent works
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개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by