Why does the searchmethod within patternsearch doesn't honor my constraint?
Mostrar comentarios más antiguos
Hello,
I'm using patternsearch with an additional searchmethod to find a global minimum on a rather big data set. I also impose some constraints to the optimization. However, the search method (searchneldermead), doesn't honor my constraints. So if the constraint is not met after running the searchmethod, pattern search starts all over again. As my optimization is very time-consuming, this is bad for two reasons: a) Patternsearch alone takes too much time and b) might end up in a local minimum. So here are my questions:
(How) Is it possible to add an constraint to the additional search routine, especially to the searchneldermead algorithm?
These are the options I chose:
hybrid_options = optimset('Diagnostics', 'off', 'Display','iter', TolFun', 1e-10, 'TolX', 1e-8, 'UseParallel', 'always','PlotFcns',{@optimplotfval ,@optimplotx});
options_ps = psoptimset('Display','iter','TolFun',1e-10,'TolX',1e-8,'TolMesh',1e-8,'TolCon',1e-10,'Vectorized','off',...
'MaxIter', 10000, 'PollMethod','GSSPositiveBasisNp1','UseParallel', 'always', 'CompletePoll','off','CompleteSearch','on','PlotFcns',{@psplotbestf,@psplotbestx},...
'Cache','on','InitialMeshSize',1,'MeshExpansion',2,'MeshContraction',0.5,'ScaleMesh','on','MeshAccelerator','on','SearchMethod', {@searchneldermead,1,hybrid_options});
[params,fval,exitflag,output]=patternsearch(objective,start,[],[],[],[],lb,ub,ConstraintFunction,options_ps);
If a constraint is not possible, which other algorithm would you recommend to run a constrained search for the global minimum? I already tried genetic algorithm, but this is too imprecise and takes too long.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Direct Search 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!