Why do I get an error when I try to use optimization functions from base MATLAB 7.14 (R2012a)?

43 ビュー (過去 30 日間)
When I try to use any of the optimization functions from base MATLAB 7.14 (R2012a) I get either of the following errors depending on the function used:
Undefined function 'optimset' for input arguments of type 'char'.
Undefined function 'optimset' for input arguments of type 'struct'.
Undefined function 'fzero' for input arguments of type 'function_handle'.
Undefined function 'fminbnd' for input arguments of type 'function_handle'.
Undefined function 'fminsearch' for input arguments of type 'function_handle'.
Undefined function 'lsqnonneg' for input arguments of type 'function_handle'.
These error messages are seen primarily just after migration from a previous version of MATLAB due to a path issue.

採用された回答

MathWorks Support Team
MathWorks Support Team 2012 年 7 月 26 日
In MATLAB 7.14 (R2012a) the base MATLAB optimization related functions were moved from the following location
>> [matlabroot '\toolbox\matlab\funfun\']
to
>> [matlabroot '\toolbox\matlab\optimfun\']
Since MATLAB copies all the preferences from the previous release to the new preference directory the issue is caused because MATLAB is unable to find these function.
The fix for this issue is to execute the following commands so that the path is restored to default and the toolbox cache is updated:
>> restoredefaultpath
>> rehash toolboxcache
Since restoring the default path will remove any personal path changes, you can manually fix this by navigating to:
cd(matlabroot);
cd toolbox;
cd matlab;
addpath(genpath('optimfun'));
savepath;
rehash;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Optimization Toolbox についてさらに検索

製品


リリース

R2012a

Community Treasure Hunt

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

Start Hunting!

Translated by