In the code below, what does ind do?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ifeatu Ezenwe
il 9 Dic 2018
Risposto: Star Strider
il 9 Dic 2018
cost=feval(ff,pop); %evaluate function
[cost,ind]=sort(cost,'descend'); %sorts in descending order
pop=pop(ind,:);
0 Commenti
Risposta accettata
Star Strider
il 9 Dic 2018
It evaluates a function called ‘ff’ with the argument ‘pop’, and assigns it to the variable ‘cost’. It then sorts ‘cost’, gets the associated indices (‘ind’)into the original vector, and uses those indices to re-define ‘pop’, sorting it according to ’cost’.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Genetic Algorithm in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!