message

版本 1.0.0.0 (2.4 KB) 作者: Todd Pataky
MESSAGE is a suppressible version of fprintf that functions similarly to WARNING.
834.0 次下载
更新时间 2006/6/19

无许可证

MESSAGE Displays a message in the command window. This is an alternative to WARNING, avoiding the automatic text "Warning: ", and also allowing for more flexible formatting, using FPRINTF.

It was developed with the intention of providing suppressible feedback during code execution requiring long running durations.
(e.g. Processing file 1 of 100...
Processing file 2 of 100... )

In this sense it can be used as a text alternative to WAITBAR.

Example Usage:

>> message('Hello')
Hello

>> message('Level 1','Hello')
Level 1
%behaves identically to FPRINTF

>> message('Level 1 %s','Hello')
Level 1 Hello

>> message('enable',{'Level 1'})
>> message('Level 1','Hello')
Hello

>> message('enable','Level 1')
>> message('off')
>> message('Level 1','Hello')
%no output returned
>> state = message('query','Level 1')
state =
1

引用格式

Todd Pataky (2024). message (https://www.mathworks.com/matlabcentral/fileexchange/11456-message), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R13
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Scope Variables and Generate Names 的更多信息
致谢

启发作品: message 2

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0