フィルターのクリア

returning additional values from a fitness function for genetic optimisation

4 ビュー (過去 30 日間)
James506
James506 2015 年 9 月 14 日
コメント済み: A Desai 2017 年 8 月 15 日
Is there a simple way to return additional values from a fitness function (in addition to the objective value) when using an optimisation algorithm, such as genetic algorithm or multi-objective ga in matlab?
For example, it is easy enough to specify additional parameters to be passed to a fitness function using a function handle:
f = @(x)parameterfun(x,a,b,c);
However, is possible to do something similar for the outputs of the fitness function?
Some ideas I had include saving the values in the fitness-function to a file, and then reading them in after the ga has finished in the parent function, or saving the values as global variables, but is there a simpler approach?

採用された回答

Alan Weiss
Alan Weiss 2015 年 9 月 16 日
You can use nested functions to do what you want. The example of a nested output function might help.
Alan Weiss
MATLAB mathematical toolbox documentation
  5 件のコメント
Alan Weiss
Alan Weiss 2017 年 8 月 15 日
You pass extra variables to an output function in exactly the same way that you pass extra parameters anywhere else.
Alan Weiss
MATLAB mathematical toolbox documentation
A Desai
A Desai 2017 年 8 月 15 日
Do you mind showing me what that would look like using the above sample code? I understand passing the extra parameters in the example provided in the link, which is similar to passing variables into the fitness function, but i cant seem to get it to work from the ga to the output function. From what I understood so far, I've added the following to the options line:
options = optimoptions('ga','CreationFcn',@gacreationframework,...
'OutputFcn',@(options,state,flag)gaoutputframework(options,state,flag,fout),...
'MaxGenerations',1,...
'PopulationSize',4,...
'UseVectorized',false,...
'UseParallel',true); %
and followed a similar line with the output function:
function [state,options,optchanged] = gaoutputframework(options,state,flag,fout)
where fout contain the extra parameters within the fitness function. But this doesnt work...

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGenetic Algorithm についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by