why I receive message like this"Warning: Function ishermitian has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict" in Matlab 2014
2 ビュー (過去 30 日間)
古いコメントを表示
why I receive message like this"Warning: Function ishermitian has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict" in Matlab 2014.How can I remove this message?
2 件のコメント
採用された回答
Mike Hosea
2014 年 10 月 20 日
編集済み: Mike Hosea
2014 年 10 月 20 日
MATLAB added a new built-in function called ishermitian in 2014a. Apparently you have one of your own on the path. Type "which -all ishermitian". Locate any that do not belong to MATLAB's official toolboxes. Rename those to something else. If they do exactly the same thing as the built-in ishermitian, you're done. If they do something else, then you will need to find all uses of ishermitian in your code and change these to call whatever you named your ishermitian function to.
2 件のコメント
Mike Hosea
2014 年 10 月 20 日
編集済み: Mike Hosea
2014 年 10 月 20 日
It would be nice to sort everything out, but since it is not your code that has the problem, I would undo my changes since they apparently broke MPT. You can undo them manually, or perhaps reinstalling MPT would be an option. Assuming there isn't an newer version that just fixes the problem, you can silence the warning with:
warning('off','MATLAB:dispatcher:nameConflict')
I have this in my startup.m file, but be careful about this because the warning does have some value--these name collisions can lead to confusion. Sometimes the old saying "ignorance is bliss" is wrong.
I would also contact the authors of MPT and ask for their advice.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!