Need how to implement the adaptive parameter tuning feature of WSO in MATLAB, specifically the morale (Wi) update
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
chaitanya
le 31 Déc 2023
Modifié(e) : Walter Roberson
le 31 Déc 2023
I need to implement the adaptive parameter tuning feature of WSO in MATLAB, specifically the morale (Wi) update
0 commentaires
Réponse acceptée
recent works
le 31 Déc 2023
Modifié(e) : Walter Roberson
le 31 Déc 2023
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 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!