Initial Population in GA

I have 7 pipes in Water distribution network and I have to select the size (Diameter) of each pipes randomly from the given set of 14 availaible Pipe diameter for a population size of 100.how can i code in MATLAB.

 Accepted Answer

I leave you a hypothetical example:
availablespipediameter=[0.365 0.406 0.437 0.5 0.562 0.593 0.687 0.8 0.9:0.1:1.4];%put your data here
population=availablespipediameter(randi(length(availablespipediameter),100,7)) %your random population

More Answers (0)

Categories

Find more on Random Number Generation in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!