how to use variables in fitness function in the genetic algorithm optimization?
5 ビュー (過去 30 日間)
古いコメントを表示
i try to run genetic algorithm optimization using a fitness function that includes variables and i get this error.
--The following error occurred converting from sym to double:
DOUBLE cannot convert the input expression into a double array.
If the input expression contains a symbolic variable, use VPA.--
i used syms when i calculate the fitness function.
anyone has any ideas about this problem? thank you.
0 件のコメント
採用された回答
Alan Weiss
2016 年 12 月 30 日
Global Optimization Toolbox function expect variables of type double, not symbolic. To use symbolic variables, first convert them to double type. For an efficient way to do this, see this example.
Alan Weiss
MATLAB mathematical toolbox documentation
4 件のコメント
Walter Roberson
2017 年 1 月 4 日
Does the function involve multiple variables? If it does then when you call matlabFunction then provide the 'vars' option as a column vector of variable names instead of using the more common row vector of variable names.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Genetic Algorithm についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!