How to apply a random Crossover (Arithmetic/Scattered/Two-point) in Genetic Algorithm using auto-generated file from Optimization Toolbox ?
Mostrar comentarios más antiguos
I have prepared a code in MATLAB with optimization toolbox which seems to be giving fair results for different optimization functions but at present, accuracy is highly dependent on the type of crossover selected.
To take advantage of different crossover and to improve efficiency, i want to apply a random crossover after every iteration i.e. any of Arithmetic, Scattered or Two-point. How can I do that ?
7 comentarios
Walter Roberson
el 10 de Ag. de 2020
Do you have integer constraints? Do you have linear constraints?
If your system is eligible to provide CrossoverFcn, then that function is not required to do the same kind of cross-over each time.
Ankur Shah
el 10 de Ag. de 2020
Editada: Ankur Shah
el 10 de Ag. de 2020
Walter Roberson
el 10 de Ag. de 2020
Then you can provide a custom CrossoverFcn that does whatever you want, possibly even calling a random one of the standard crossover functions.
Ankur Shah
el 11 de Ag. de 2020
Editada: Ankur Shah
el 11 de Ag. de 2020
Walter Roberson
el 11 de Ag. de 2020
crossfcns = {@first, @second};
chosen = crossfcns{randi(length(crossfcns))} ;
[varargout{:}] = chosen<varargin{:}) ;
Ankur Shah
el 11 de Ag. de 2020
Editada: Ankur Shah
el 11 de Ag. de 2020
Walter Roberson
el 11 de Ag. de 2020
options = optimoptions(options,'CrossoverFcn', @MyCustomCrossover)
function varargout = MyCustomCrossover(varargin)
crossfcns = {@crossoverarithmetic, @crossoverheuristic, @crossoveritnermediate, @crossoverscattered, @crossoversinglepoint, @crossovertwopoint};
chosen = crossfcns{randi(length(crossfcns))} ;
[varargout{:}] = chosen(varargin{:}) ;
end
Respuesta aceptada
Más respuestas (1)
Sulaymon Eshkabilov
el 11 de Ag. de 2020
0 votos
See the screen shot given in the attachement. You should select from the drop-down options whichever crossover function suits for your task.
3 comentarios
Ankur Shah
el 11 de Ag. de 2020
Editada: Ankur Shah
el 11 de Ag. de 2020
Walter Roberson
el 24 de En. de 2021
I show using a literally random crossover in https://www.mathworks.com/matlabcentral/answers/577609-how-to-apply-a-random-crossover-arithmetic-scattered-two-point-in-genetic-algorithm-using-auto-gen#comment_968707
Ankur Shah
el 25 de En. de 2021
Editada: Ankur Shah
el 25 de En. de 2021
Categorías
Más información sobre Genetic Algorithm en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!