Info

此问题已关闭。 请重新打开它进行编辑或回答。

Matlab > Genetic annotator > HELP 2

1 次查看(过去 30 天)
Inderjeet Singh
Inderjeet Singh 2016-1-21
关闭: MATLAB Answer Bot 2021-8-20
HELP > Coding and Minimizing a Fitness Function Using the Genetic Algorithm > Minimizing Using Additional Arguments
function y = parameterized_fitness(x,a,b)
y = a * (x(1)^2 - x(2)) ^2 + (b - x(1))^2;
a = 100; b = 1; % define constant values
Please let me know that from where the x1 and x2 are picking values?

回答(1 个)

Eric
Eric 2016-1-21
x is an input to the function parameterized_fitness(). Its values are defined by the code that calls this function, not within this function itself.
Also, you need not re-define a and b since these are passed in as well. The usage of this function would look to be something like:
x = [-0.5 0.5];%Or some vector, it's impossible to say from the code
a = 100;
b = 1;
y = parameterized_fitness(x, a, b);
-Eric

Community Treasure Hunt

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

Start Hunting!

Translated by