function h = iotable(varargin)
%IOTABLE
%
%   Authors: James G. Owen
%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:38:59 $

persistent thistable;
    
if nargin>=1
    % Create if table object if necessary
    if isempty(thistable)
        thistable = tsguis.iotable;
    end
    % (re)target table model to the right table 
    thistable.initialize(varargin{:})
end % Get the persistent var for debugging reasons   
h = thistable;
