Azzera filtri
Azzera filtri

Fmincon Too many input arguments

3 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Walter Roberson
Walter Roberson il 4 Lug 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 Commenti
Joseph Cullen
Joseph Cullen il 5 Lug 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 il 6 Lug 2015
Sounds like a good reason to use variables that have been assigned [] in order to document the purpose of each []

Accedi per commentare.

Più risposte (0)

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by