nonlcon : Too many input arguments.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi everybody, I have a problem with non linear constraints in fmincon. I get this error "Too many input arguments".
The nonlcon function is very simple:
function [c,ceq] = covposdef(x)
c = -x(3)*x(5)+x(4)^2;
ceq = [];
end
The function to optimize is a likelihood of a bivariate normal density. Any suggestion?
2 Commenti
Risposta accettata
Matt J
il 8 Dic 2012
I think the problem is that FMINCON thinks your fixed "data" is meant to be passed both to meancov and covposdef. If you intend only to pass it to meancov, call FMINCON using the following more modern syntax
theta = fmincon(@(x) meancov(x,data),iv,[],[],[],[],lb,ub,@covposdef,options);
2 Commenti
Matt J
il 8 Dic 2012
Modificato: Matt J
il 8 Dic 2012
You'll want to read the doc on Anonymous Functions, but basically they're a way of defining functions on-the-fly, possibly with fixed parameters, e.g.,
>> fixed=2; f=@(x) x+fixed;
>> f(10), f(20), f(30)
ans =
12
ans =
22
ans =
32
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!