Definition of Objective function in fmincon when it's not an analytic function

3 views (last 30 days)
Hi guys, I want to be able to define the objective function when it's not an analytic function. In my code I'm doing analysis by FEM to find a value for displacement in each iteration but I don't have the displacement function itself. How can I minimize displacement (Objective function) then?
Thanks in advance.

Accepted Answer

Alan Weiss
Alan Weiss on 4 Sep 2012
You have some function that evaluates the objective, right? Maybe an interpolation as in the Mount Washington example. Toolbox functions don't care what the objective function is, they just need to be able to get function evaluations.
If your objective function is not smooth, as often happens when the evaluation is a simulation or numerical solution of an equation, then you might need to set the finite differences to be larger than default. use the FinDiffRelStep or DiffMinChange options. Or use patternsearch if you have Global Optimization toolbox.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
  3 Comments
Alan Weiss
Alan Weiss on 4 Sep 2012
My question to you is, do you have a function that evaluates the objective? Is it a file on your MATLAB path? I suppose the answer is yes, and your function looks something like
function objective = mycalculation(x,a,b)
...
where a and b are parameters, and x is the vector of control variables. Then you should write
fun = @(x)mycalculation(x,a,b);
xanswer = fmincon(fun,x0,...)
For more details, see Writing Scalar Objective Functions.
Alan Weiss
MATLAB mathematical toolbox documentation

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!