List of MATLAB code analyzer message IDs

9 views (last 30 days)
Oren
Oren on 29 Jul 2014
Answered: Narfi on 22 Mar 2023
I'd like to find a list of the message IDs of the built-in code analyzer warning messages used for suppressing those messages either on a single line or in a file (see here ). I know you can search by message ID, but the list in the preferences (see here ) doesn't actually show the ID itself. Any help would be appreciated, thanks!

Accepted Answer

Oren
Oren on 30 Jul 2014
The answer was found in a parallel SO thread. In short:
msgs = mlint('-allmsg', filename)
where filename can be any arbitrary filename. This works with the checkcode function as well. The resulting struct must be parsed to separate message IDs and messages, but this shouldn't be too difficult. An alternative solution was proposed as well, see the thread for details.

More Answers (1)

Narfi
Narfi on 22 Mar 2023
The entirety of the Code Analyzer checks is now listed in the documentation: https://www.mathworks.com/help/matlab/matlab_env/index-of-code-analyzer-checks.html

Categories

Find more on Debugging and Analysis in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!