No default options available: the function 'fmincon' does not exist on the path.
Mostra commenti meno recenti
I am running demo showing below, with error : No default options available: the function 'fmincon' does not exist on the path. what's wrong with my matlab?
load Data_MarkPound
dem2gbp = price2ret(Data);
[coeff,errors,LLF,innovations,sigmas] = garchfit(dem2gbp);
Risposte (2)
Walter Roberson
il 9 Nov 2011
0 voti
fmincon is part of the Global Optimization Toolbox.
Martyn Dorey
il 24 Mag 2012
0 voti
I've just had this error in compiled code. It is not being picked because the optimset command uses a text reference to fmincon. optimset('fmincon'). To get around this error add the following line of text to your code which uses a pragma: %#function fmincon
Categorie
Scopri di più su Entering Commands in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!