7 variable in genetic algorithms
古いコメントを表示
Hi i am working with genetic algorithms toll box in m file with 7 variable ,
options=gaoptimset('InitialPopulation',x0);
[x,fval]= ga(FitnessFunction,7,[],[],[],[],lb,ub,[],options);
i have a problems it gives me error below i dont know why , can any one help me
thank you
Error in createAnonymousFcn>@(x)fcn(x,FcnArgs{:}) (line 11)
fcn_handle = @(x) fcn(x,FcnArgs{:});
Error in fcnvectorizer (line 13)
y(i,:) = feval(fun,(pop(i,:)));
Error in stepGA (line 44)
nextScore = fcnvectorizer(nextPopulation,FitnessFcn,1,options.SerialUserFcn);
Error in galincon (line 62)
[score,population,state] =
stepGA(score,population,options,state,GenomeLength,FitnessFcn);
Error in ga (line 359)
[x,fval,exitFlag,output,population,scores] = galincon(FitnessFcn,nvars, ...
5 件のコメント
Walter Roberson
2016 年 2 月 3 日
We need to see your ga call and the code of whatever function handle you are passing in.
mohammed hussein
2016 年 2 月 3 日
Walter Roberson
2016 年 2 月 3 日
?? ga() does not ask for licenses . If you did not have the license for ga() it would just refuse to run entirely.
If you are calling upon another program using system() or something similar, then the method of satisfying its license is going to depend on what you are calling. We would need more information about that.
mohammed hussein
2016 年 2 月 4 日
Walter Roberson
2016 年 2 月 4 日
Please post a screen capture of one of the license requests.
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Genetic Algorithm についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!