Clear Filters
Clear Filters

from fminsearch to bayesopt

3 views (last 30 days)
Barbara Schläpfer
Barbara Schläpfer on 15 Dec 2020
Answered: Alan Weiss on 15 Dec 2020
Hi
I wrote an optimization for material parameters. So far I used the function fminsearch.
[x_min, fval] = fminsearch(@calculate_cost, [5.5e-02, 11.5729, 0.5492], optimset('MaxFunEvals', 100));
I was wondering if there is an simple way to change it to an bayesopt function?
Thanks

Answers (1)

Alan Weiss
Alan Weiss on 15 Dec 2020
You are free to use bayesopt, but you will have to change your objective function. For bayesopt you first have to create optimizable variables, then write the objective function in terms of those variables. See the workflow here.
I am not sure why you are changing solvers, but there are many solvers available in Optimization Toolbox and Global Optimization Toolbox as well. For help choosing a solver, see Optimization Decision Table and Table for Choosing a Solver.
Alan Weiss
MATLAB mathematical toolbox documentation

Community Treasure Hunt

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

Start Hunting!