goat这个工具箱是网上流传最广的一个,我仅仅针对其主函数.docVIP

  • 123
  • 0
  • 约1.21万字
  • 约 11页
  • 2016-10-15 发布于天津
  • 举报

goat这个工具箱是网上流传最广的一个,我仅仅针对其主函数.doc

goat这个工具箱是网上流传最广的一个,我仅仅针对其主函数.doc

goat这个工具箱是网上流传最广的一个,我仅仅针对其主函数做了注释。 function [x,endPop,bPop,traceInfo] = ga(bounds,evalFN,evalOps,startPop,opts,... termFN,termOps,selectFN,selectOps,xOverFNs,xOverOps,mutFNs,mutOps) % GA run a genetic algorithm % function [x,endPop,bPop,traceInfo]=ga(bounds,evalFN,evalOps,startPop,opts, %?????????????????????????????????????? termFN,termOps,selectFN,selectOps, %?????????????????????????????????????? xOverFNs,xOverOps,mutFNs,mutOps) %??????????????????????????????? % Output Arguments: %?? x??????????? - the best solution found during the course of the run 求得的最优解 %?? endPop?????? - the final population 最终得到的种群 %?? bPop???????? - a trace of the best population 最优种群的一个搜索轨迹 %?? traceInfo??? - a matrix of best and means of the ga for each generation 每一代种群的最优个体和均值 % % Input Arguments: %?? bounds?????? - a matrix of upper and lower bounds on the variables 代表变量上下界的矩阵 %?? evalFN?????? - the name of the evaluation .m function 适应度函数所在的m文件 %?? evalOps????? - options to pass to the evaluation function ([NULL]) 传递给适应度函数的参数 %?? startPop???? - a matrix of solutions that can be initialized 初始种群 %????????????????? from initialize.m %?? opts???????? - [epsilon prob_ops display] change required to consider two %????????????????? solutions different, prob_ops 0 if you want to apply the %????????????????? genetic operators probabilisticly to each solution, 1 if %????????????????? you are supplying a deterministic number of operator %????????????????? applications and display is 1 to output progress 0 for %????????????????? quiet. ([1e-6 1 0]) %?? 1e-6:变量进行二进制编码时指定的精度,1:选择浮点编码,0:为二进制编码,并指定精度,为第三个0时结束 %?? termFN?????? - name of the .m termination function ([maxGenTerm]) 终止函数所在的m文件 %?? termOps????? - options string to be passed to the termination function 传递个终止函数的参数,一般为需要遗传的代数 %????????????????? ([100]). %?? selectFN???? - name of the .m selection function ([normGeomSelect]) 选择函数的名称 %?? selectOpts?? - options string to be passed to select after 传递给选择函数的参数,一般为变异概率 %????????????????? selec

文档评论(0)

1亿VIP精品文档

相关文档