Definition of Objective function in fmincon when it's not an analytic function
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Alan Weiss
il 4 Set 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 Commenti
Alan Weiss
il 4 Set 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,...)
Alan Weiss
MATLAB mathematical toolbox documentation
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!