Effacer les filtres
Effacer les filtres

How do I turn off a particular warning in MATLAB?

211 vues (au cours des 30 derniers jours)
MathWorks Support Team
MathWorks Support Team le 19 Mai 2010
Commenté : Walter Roberson le 23 Jan 2020
I am receiving a warning that I am not interested in. I would like to suppress the display of that warning even though I do not know the warning identifier.

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 19 Mai 2010
This change has been incorporated into the documentation in Release 2010a (R2010a). For previous releases, read below for any additional information:
The general method for suppressing a warning message is to issue the following command at the prompt:
warning('off', MSGID)
The string 'MSGID' is a unique identifier that corresponds to a particular warning message.
There are two ways to determine what a warning's identifier is, so that it can be suppressed later:
1) Just after the specific warning has been issued, run the following command:
[a, MSGID] = lastwarn();
This will save the message identifier to the variable MSGID. Then you can use the command given above to turn that particular warning off.
2) Turn on verbose warning messages with the following command:
warning on verbose
When warnings are displayed, they will include the command that can be used to turn that warning off.
  1 commentaire
Walter Roberson
Walter Roberson le 23 Jan 2020
I just noticed a moment ago that MATLAB:hg:EraseModeIgnored cannot be turned off in practice; the message is produced anyhow.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Argument Definitions dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by