The Algorithms logo
The Algorithms
Acerca deDonar

Sort Population

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