In Matlab when issuing a custom warning, the message-id is not being recognized. How do I correct this?
2 次查看(过去 30 天)
显示 更早的评论
I am issuing a warning in my code like -
warning('Custom:data-missing','Can''t access Customer Terms for data point #%d.',i)
When this is triggered on the command window I see
Warning: Custom:data-missing
> In asr_stfr_terms at 97
Why is this happening? Instead of the warning message, why is Matlab printing the message_id?
0 个评论
采纳的回答
Sean de Wolski
2014-5-28
It doesn't like the hyphen:
warning('Custom:data_missing','Can''t access Customer Terms for data point #%d.',i)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!