Definition of Objective function in fmincon when it's not an analytic function
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Alan Weiss
2012-9-4
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 个评论
Alan Weiss
2012-9-4
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,...)
Alan Weiss
MATLAB mathematical toolbox documentation
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!