The Algorithms logo
The Algorithms
AboutDonate

Sort Population

function pop =SortPopulation(pop)
    [~,so] = sort([pop.Cost]);
        pop = pop(so);
end