No default options available: the function 'fmincon' does not exist on the path.
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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);
0 comentarios
Respuestas (2)
Walter Roberson
el 9 de Nov. de 2011
fmincon is part of the Global Optimization Toolbox.
0 comentarios
Martyn Dorey
el 24 de Mayo de 2012
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
0 comentarios
Ver también
Categorías
Más información sobre Optimization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!