In the code below, what does ind do?

cost=feval(ff,pop); %evaluate function
[cost,ind]=sort(cost,'descend'); %sorts in descending order
pop=pop(ind,:);

 採用された回答

Star Strider
Star Strider 2018 年 12 月 9 日

1 投票

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 件)

カテゴリ

質問済み:

2018 年 12 月 9 日

回答済み:

2018 年 12 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by