how to pass initial guess to ga(),this is my sample code and i want to initialize complex initial guess in the code please help

23 次查看(过去 30 天)
[z, f] = ga(@objfun,2);
ga stopped because the average change in the fitness value is less than options.FunctionTolerance.
disp(z)
0.4017 0.4718
function f = objfun(X)
% Create complex value from real and imaginary
z = X(:, 1) + i*X(:, 2);
f = z.^2 - z + 1;
f = abs(f);
end

采纳的回答

Walter Roberson
Walter Roberson 2024-3-11
In order to pass in an initial guess, you need to create an options structure and set
InitialPopulationMatrix specifies an initial population for the genetic algorithm. The default value is [], in which case ga uses the default CreationFcn to create an initial population. If you enter a nonempty array in the InitialPopulationMatrix, the array must have no more than PopulationSize rows, and exactly nvars columns, where nvars is the number of variables, the second input to ga or gamultiobj. If you have a partial initial population, meaning fewer than PopulationSize rows, then the genetic algorithm calls CreationFcn to generate the remaining individuals.
  4 个评论
Walter Roberson
Walter Roberson 2024-3-12
编辑:Walter Roberson 2024-3-12
initial=[1 2];
nvars=2;
opts=optimoptions('ga','InitialPopulationMatrix',initial,'PopulationSize',1);
[z, f] = ga(@objfun,nvars,[],[],[],[],[],[],[],opts);
ga stopped because the average change in the fitness value is less than options.FunctionTolerance.
disp(z)
1 2
function f = objfun(X)
% Create complex value from real and imaginary
z = X(:, 1) + i*X(:, 2);
f = z.^2 - z + 1;
f = abs(f);
end
A population as small as 1 is likely to cause problems.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surrogate Optimization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by