Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Matlab > Genetic annotator > HELP 2
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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?
0 comentarios
Respuestas (1)
Eric
el 21 de En. de 2016
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
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!