Documentation of iduistat


Global Index (short | long) | Local contents | Local Index (short | long)


Function Synopsis

iduistat(string,flag,window)

Help text

IDUISTAT Manages the status line in main ident window.
   STRING: What to display on the status line
   FLAG: If flag is =1, then the STRING is added to the current status
   line, otherwise it replaces the old string.

Cross-Reference Information

This function is called by

Listing of function iduistat

function iduistat(string,flag,window)

%   L. Ljung 4-4-94
%   Copyright (c) 1986-98 by The MathWorks, Inc.
%   $Revision: 2.3 $  $Date: 1997/12/02 03:40:24 $

global XIDstatus
if nargin<3,window=16;end
if nargin<2,flag=0;end
if flag
 str1=get(XIDstatus(window),'string');
 string=[str1,' ',string];
end
eval('set(XIDstatus(window),''string'',string)','')
drawnow