how can i make ga code to set a specific values to a parameter

6 visualizaciones (últimos 30 días)
zenhom mohamed
zenhom mohamed el 25 de Nov. de 2018
Respondida: Alan Weiss el 27 de Nov. de 2018
hallo, i am making optimization by genetic algorithm (ga)...i know that when you run the code, random values for each parameter are assumed..my question: if there is a parameter i want the code to assume a specific values to it at each iter?

Respuestas (2)

Star Strider
Star Strider el 25 de Nov. de 2018
I am not certain what you are asking.
If you have a parameter you want not to vary (you already know the optimum value), fix it in your fitness function, and optimise the other parameters you want to estimate. This is likely more efficient than fixing it with the ‘lb’ and ‘ub’ arguments, alghtough if you want it to vary only within a narrow range, you can use those arguments to constrain it.
  2 comentarios
zenhom mohamed
zenhom mohamed el 27 de Nov. de 2018
thank you for your answer @star strider
i mean that: if x(1) represents a size of a generator which takes a specific values according to the manifacture (for ex. 50, 100, 150 kw only), i want the ga code not to set any random value for x(1), i want it to set one value of these three values at each iteration
Star Strider
Star Strider el 27 de Nov. de 2018
My pleasure.
Set ‘x(1)’, and whatever other parameters you want not to vary, to constant values in your fitness function, and do not include them in the parameters you want to optimise.

Iniciar sesión para comentar.


Alan Weiss
Alan Weiss el 27 de Nov. de 2018
It sounds to me as if you have a discrete set of values to choose from. Use the technique of Mixed Integer Optimization, as shown in the example Solving a Mixed Integer Engineering Design Problem Using the Genetic Algorithm.
Alan Weiss
MATLAB mathematical toolbox documentation

Categorías

Más información sobre Genetic Algorithm en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by