Clear Filters
Clear Filters

Genetic algorithm- error when providing constraints in a loop

1 view (last 30 days)
Hi. I am using ga for a problem with multiple constraints. I provide constraints in a for loop using the comand "vercat" and I get the following error on execution
Not enough input arguments.
Error in simple_constraint (line 13)
c=vertcat(c,(sum(x(cin)))-1);
Does GA allow this? or I will have to hardcode each constraint? Please guide.
  9 Comments
Umber Saleem
Umber Saleem on 2 Apr 2019
excluding the use of global variables, I have tried the follwoing constraint which is hard coded as
c=[x(3)+x(4)+x(5)+x(6)+x(7)+x(8)+x(9)+x(10)+x(11)+x(12)+x(13)-2];
but the error is same.
Walter Roberson
Walter Roberson on 2 Apr 2019
We can make guesses, but it is difficult to reproduce that behaviour without the actual code.

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!