Fmincon Too many input arguments

9 views (last 30 days)
This is driving me crazy. I have almost this exact line of code in another program and it works perfectly.
bellman_handle = @(capnext)bellmanRHScont(capnext,transd(j,:), c , x(i), start, beta, theta(j), b, mc);
[action,value]=fmincon(bellman_handle,1,[],[],[],[],0,k,[],[],options);
I am using an anonymous function, but when I run the code I get the following error. Any ideas?
Error using
@(capnext)bellmanRHScont(capnext,transd(j,:),c,x(i),start,beta,theta(j),b,mc)
Too many input arguments.
Error in fmincon (line 564)
initVals.f = feval(funfcn{3},X,varargin{:});
Error in testmodelcont (line 100)
[action,value]=fmincon(bellman_handle,1,[],[],[],[],0,k,[],[],options);
Caused by:
Failure in initial user-supplied objective
function evaluation. FMINCON cannot continue.

Accepted Answer

Walter Roberson
Walter Roberson on 4 Jul 2015
You did not show us the header for bellmanRHScont so we do not know how many inputs it expects. You are passing in 9 inputs to it.
You are passing 11 inputs to fmincon(). fmincon() is not documented as accepting more than 10 inputs. For historical reasons, any inputs past the 10th will be passed as extra parameters to the function, so two parameters would be passed to your function handle that expects only 1.
You should re-count the number of [] you have. You might wish to assign the various [] to variable names to make it clearer which [] corresponds to which parameter.
  2 Comments
Joseph Cullen
Joseph Cullen on 5 Jul 2015
Good call. I didn't realize that any extra parameters would be passed to the function. I have two minimizers that I use: fmincon and knitro. Knitro has 11 inputs and fmincon has 10. I had one extra set of empty brackets in the fmincon call. Not an easy difference to spot.
knitromatlab(bellman_handle,1,[],[],[],[],0,k,[],[],options);
incorrect: fmincon(bellman_handle,1,[],[],[],[],0,k,[],[],options);
correct: fmincon(bellman_handle,1,[],[],[],[],0,k,[],options);
Walter Roberson
Walter Roberson on 6 Jul 2015
Sounds like a good reason to use variables that have been assigned [] in order to document the purpose of each []

Sign in to comment.

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!