fmincon non linear constraint: too many input arguments
1 view (last 30 days)
Show older comments
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
Answers (1)
Matt J
on 9 Dec 2014
Edited: Matt J
on 9 Dec 2014
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 Comments
Matt J
on 10 Dec 2014
Edited: Matt J
on 10 Dec 2014
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.
See Also
Categories
Find more on Linear Least Squares in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!