The Algorithms logo
The Algorithms
À proposFaire un don

Sort Population

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