Is there a Hessian-free optimization algorithm?

조회 수: 10 (최근 30일)
Shahab
Shahab 2016년 5월 24일
답변: Mary Fenelon 2016년 5월 27일
I need to do some constrained optimization work on a function which is actually a Simulink model involving hundreds of variables. Each function evaluation takes about 6 or 7 seconds. So, lowering the number of function evaluations is critical to me.
I've looked into the available algorithms with fmincon (interior-point, sqp, active-set, trust-region-reflective) and they all require Hessian calculation.
Is there any algorithm available in MATLAB that can optimize the function via only function or gradient evaluation? (and does not require the time-consuming Hessian calculation)

채택된 답변

Sean de Wolski
Sean de Wolski 2016년 5월 24일
편집: Sean de Wolski 2016년 5월 24일
In the Global Optimization Toolbox:
doc patternsearch
perhaps

추가 답변 (1개)

Mary Fenelon
Mary Fenelon 2016년 5월 27일
If your functions are smooth, a gradient-based solver such as fmincon may take fewer function evaluation overall. Some of its algorithms do not calculate the Hessian using finite differences but use an approximation to the Hessian; see more here . You might also want to review the docs on choosing an appropriate step size when optimizing a simulation to help decide between a gradient-based solver and patternsearch but it's hard to predict so if possible give them both a try.

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by