MatLab fmincon 约束优化”输入参数不足”。

MatLab fmincon constrained optimization "Not enough input arguments."

我做到了

1
2
3
4
5
6
function f=objfun(w)
a=0.5
w0=[0.1;0.2;0.3];
f=(a^2)/2 + w(1)+ w(2)+ w(3);

[w,fval]=fmincon('objfun',w0,[],[],[],[],[],[],'constraint')

但是我收到了这个错误信息。

1
2
Error using objfun (line 3)
Not enough input arguments.

它在说什么问题?

我从

学到了fmincon

1
http://www.math.colostate.edu/~gerhard/classes/331/lab/fmincon.html

它告诉我像这样的代码

1
2
3
function f=objfun(x)

f=x(1)^4-x(1)^2+x(2)^2-2*x(1)+x(2);

将是进行约束优化的第一行。

出了什么问题?


我相信您需要将函数句柄传递给 fmincon。来自文档 http://www.mathworks.com/help/optim/ug/fmincon.html

1
x = fmincon(@myfun,x0,A,b)

myfun 是哪里的 MATLAB?函数如

1
2
function f = myfun(x)
f = ...            % Compute function value at x

尝试将函数句柄传递给 fmincon。我假设约束是你的非线性约束函数,它也应该是一个函数句柄。我还假设您没有从目标函数内部调用 fmincon 。如果是这样,那么我认为你会有这样的事情:

objfun.m

1
2
3
4
5
 function f = objfun(w)
    a=0.5;
    f=(a^2)/2 + w(1)+ w(2)+ w(3);
    return
end

main.m

1
2
 w0=[0.1;0.2;0.3];
[w,fval]=fmincon(@objfun,w0,[],[],[],[],[],[],@constraint)