Optimizing a function with many many arguments

17 次查看(过去 30 天)
I have a function which has many outputs. I would like to find the minimum of one of the outputs by optimizing the function. Since I have many outputs I suspect that the optimization will not be successful. So my function is of the form:
function [A, B, C]=myfun(a,b,c)
and I would like to find the minimum only of the output A. Then since I the optimized values for a,b,c I would like to call again the function to find the values also of B and C.
So I would like to do:
[Amin, Bopt, Copt]=myfun(aopt, bopt, copt)
Do you know how can implement it?

回答(3 个)

Matt J
Matt J 2013-1-25
编辑:Matt J 2013-1-25
Any of the solvers can do this, e.g.
fun=@(x) myfun(x(1), x(2), x(3));
initialpoint=[aguess,bguess, cguess];
x = fminsearch(fun , initialpoint);
[Amin, Bopt, Copt]=fun(x);
  3 个评论
Matt J
Matt J 2013-1-25
Inside my fun there is only one output which I would like to optimize and depends on the vector x. The thing is that myfun is saved in separate script and has lots of outputs. Since I want the minimization of only one of the outputs I guess that the way I showed is not correct.
As long as the first output of myfun is the value you are optimizing, and as long as you are not using the option 'GradObj'='on', it should be fine.
Matt J
Matt J 2013-1-25
Well I could place it first but that is not what I am looking for.
Then wrap it in a function that does place it first.

请先登录,再进行评论。


Giorgos Papakonstantinou
Basically I would like from another script to execute the optimization. So the function is saved in another script. When I do the optimization I am creating a function handle with the following way:
a=3;
b=7;
c=10;
d=9;
f=@(x)myfun(x, a, b, c, d);
x0=[1, 2, 3];
A=zeros(1,3);
A(1,1)=2;
A(1,2)=0.5;
b=-1;
[xopt,fmin]=fmincon(p,x0,A,b)
I am passing parameters a,b,c,d. x is the variable vector. Inside my fun there is only one output which I would like to optimize and depends on the vector x. The thing is that myfun is saved in separate script and has lots of outputs. Since I want the minimization of only one of the outputs I guess that the way I showed is not correct.

Giorgos Papakonstantinou
Well I could place it first but that is not what I am looking for. Anyway thank you Matt.

类别

Help CenterFile Exchange 中查找有关 Get Started with Optimization Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by