How do I suppress the table warning in R2017a?
24 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2017 年 7 月 7 日
回答済み: MathWorks Support Team
2017 年 7 月 7 日
I used to be able to use the following command to suppress the table warnings in R2016b. This no longer seems to work in R2017a:
>> warning('OFF', 'MATLAB:table:ModifiedVarnames')
How can I suppress this warning in R2017a?
採用された回答
MathWorks Support Team
2017 年 7 月 7 日
In MATLAB R2017a, the table warning suppression ID changed. While it used to be mapped to the ID 'MATLAB:table:ModifiedVarnames', it is now mapped to the ID 'MATLAB:table:ModifiedAndSavedVarnames'. You can find the last warning's ID with the following command:
>> [a, MSGID] = lastwarn()
a =
'Variable names were modified to make them valid MATLAB identifiers. The original names are saved in the VariableDescriptions property.'
MSGID =
'MATLAB:table:ModifiedAndSavedVarnames'
So the following command will suppress the table warning as desired:
>> warning('OFF', 'MATLAB:table:ModifiedAndSavedVarnames')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Model and Validate Requirements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!