フィルターのクリア

Saving the design variable's history in optimization

8 ビュー (過去 30 日間)
Mayank
Mayank 2013 年 5 月 14 日
I'm using the global optimization tools ga and sa. Now, I want to have the history of the changes made in the design variables, not in a plot but in a text file which contains the values of the variables at each iteration. How can this be done?

採用された回答

Alan Weiss
Alan Weiss 2013 年 5 月 17 日
This can be done easily using an Output Function. The documentation for ga is here, and the documentation for sa is here.
Basically, at each stage in the algorithm, append the current point to a matrix, such as with the command
xhistory = [xhistory;x];
There is an example here showing how to use output functions for a similar purpose, but be careful because this solver uses a different syntax.
Alan Weiss
MATLAB mathematical toolbox documentation

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSolver Outputs and Iterative Display についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by