Is there a way to save additional information in a custom crossover function for the ga and then pass it to the output function?
2 ビュー (過去 30 日間)
古いコメントを表示
I have custom crossover, mutation, and output functions for my implementation of the ga (genetic algorithm).
I would like to be able to save certain information when calling the crossover function (namely I want to know which parents produced which offspring and what the parents' scores were). Then when the output function is called, I want to refer to that information if a better solution was generated.
I have tried passing a struct to the crossover and output functions and have them both refer to it, but that doesn't seem to work out of the box.
(The scores seem to be passed to the crossover function in the field the documentation refers to as 'unused', by the way.)
0 件のコメント
採用された回答
Walter Roberson
2021 年 3 月 27 日
There is no provided mechanism for this.
You can use strategies such as shared variables. http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F
3 件のコメント
Walter Roberson
2021 年 3 月 31 日
I would not have advised using global variables. Shared variables maybe.
その他の回答 (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!