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 views (last 30 days)
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?

Accepted Answer

Mike Hosea
Mike Hosea on 20 Oct 2014
Edited: Mike Hosea on 20 Oct 2014
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 Comments
Mike Hosea
Mike Hosea on 20 Oct 2014
Edited: Mike Hosea on 20 Oct 2014
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.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!