Error in fmincon - getIpOptions is coming as unrecognized function or variable

51 visualizzazioni (ultimi 30 giorni)
This is the exact error below:
Unrecognized function or variable 'getIpOptions'.
Error in fmincon (line 832)
options = getIpOptions(options,sizes.nVar,mEq,flags.constr,defaultopt,10,0.01);
How do i solve this error and move forward ?

Risposte (1)

Chidvi Modala
Chidvi Modala il 12 Giu 2020
The file 'getIpOptions.m' should be stored in the directory identified below. You can run this line of code which should open the directory where this function is stored and look for that function (for Windows):
winopen(fullfile(matlabroot,'toolbox\optim\optim'))
If the file exists, the path has somehow been removed. You may restart MATLAB and see if the problem goes away. If it doesn't go away, check your startup.m file (if that file exists) to determine if you're removing important paths. You could also try running
restoredefaultpath
If the file does not exists, you can reinstall Optimization Toolbox to resolve the issue.
  6 Commenti
Walter Roberson
Walter Roberson il 12 Giu 2020
"interior-point" is the default option for most cases, but you can use optimset() to select a different one. If your choice is not compatible with your system of equations, it will tell you before doing much work.
getIPOptions() stands for "get Interior Point options", and is only used if Interior Point is the active algorithm. If getIPOptions is not available then choose a different Algorithm.
Harshvardhan Tandon
Harshvardhan Tandon il 16 Giu 2020
Thank you for your help Walter and Chidvi !
I have installed the 'Optimization Toolbox' and my problem has been solved.

Accedi per commentare.

Categorie

Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by