MATLAB: Initial Population in GA

MATLABrandom number generator

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.

Best 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