statmsg.m

来自「最新模糊逻辑工具箱」· M 代码 · 共 12 行

M
12
字号
function statmsg(figNumber,msgStr)
%STATMSG Send message to GUI status field.
%   STATMSG(figNumber,msgStr) causes the message contained in msgStr
%   to be passed to the status line (a text uicontrol field with the
%   Tag property set to "status") of the specified figure. 

%   Ned Gulley, 4-27-94
%   Copyright (c) 1994-98 by The MathWorks, Inc.
%   $Revision: 1.8 $  $Date: 1997/12/01 21:45:53 $

set(findobj(figNumber,'Type','uicontrol','Tag','status'),'String',msgStr);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?