fmincon non linear constraint: too many input arguments
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, I need to minimize a log-likelihood function subject to a non-linear constraint. So I created a function for this constraint to pass it to the fmincon. But it prompts the error too many inputs
The objective function (x are 5 parameters)
[a1 a2 a3]=objfun(x,data,data2)
The non linear constraint
[c ceq]=nonlinconfun(x)
When running fmincon
[xhat fval]= fmincon(@objfun, x0, [], [], [], [], [], [], lb, ub, @nonlinconfun , options, data, data2)
I get this error:
Error using nonlinconfun
Too many input arguments.
Error in fmincon (line 651)
[ctmp,ceqtmp] = feval(confcn{3},X,varargin{:});
Error in origfun (line 31)
[xhat fval]= fmincon(@objfun, x0, [], [], [], [], [], [], lb, ub, @nonlinconfun , options, data, data2)
Caused by:
Failure in initial user-supplied nonlinear constraint function evaluation. FMINCON cannot continue.
Remarks:
A) In this example I know the final parameters in advance. I enter the final parameters as x0.
B) nonlinconfun evaluates the parameters x, it shouldn't need data or data2. So If I do
[xhat fval]= fmincon(@(x) objfun(x,data,data2), x0, [], [], [], [], [], [], lb, ub, @nonlinconfun , options)
Here fmincon computes xhat but these are very different from the final (known in this case) parameters.
C) And ignoring the non-lin constraint, fmincon outputs xhat in one iteration the correct params
[xhat fval]= fmincon(@objfun, x0, [], [], [], [], [], [], lb, ub,[] , options, data, data2)
But if I slightly change x0 it outputs very different xhat.
It might be the way I'm passing the constraint but I cannot seem to fix this. I tried to follow some examples but still same error. Let me know if it is not clear. Thanks
답변 (1개)
Matt J
2014년 12월 9일
편집: Matt J
2014년 12월 9일
Syntax (A) is incorrect. Syntax (B) is correct. Syntax (C) is correct, but deprecated. If you want to run without constraints, it would be better to do
[xhat fval]= fmincon(@(x) objfun(x,data,data2), x0, [], [], [], [], [], [], lb, ub, [],options)
As for the result you are getting, there is as yet, no reason to think the result is incorrect, even if it is unexpected. There could be multiple solutions. Or you could have coded the objective/constraints incorrectly. Or, there could be better solutions than you knew. Have you compared fval output in the various scenarios? Which gives the lowest value and how different are the values?
댓글 수: 4
Matt J
2014년 12월 10일
편집: Matt J
2014년 12월 10일
I thought the main doubts would be around how to actually set the fmincon because the rest is pretty standard
Again, clearly not. fmincon found a point that is provably better than the one you thought was the best. Clearly, the problem is in your implementation of the objective function or constraints. Either that, or the paper is wrong about which point is the best.
checked the objfun which is the logl
Probably not. If logl is the loglikelihood (to be maximized), then you should be minimizing -logl. Thus -logl should be the objective function.
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear Least Squares에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!