function p = timeoptions(varargin)
%TIMEOPTIONS Create a TimePlotOptions object
%
%   P = TIMEOPTIONS returns the default TimePlotOptions object.
%
%   P = TIMEOPTIONS('cstprefs') initializes the TimePlotOptions object
%   with the Control System Toolbox preferences.
%
%   Available options include:
%      Title, XLabel, YLabel         Label text and style
%      TickLabel                     Tick label style
%      Grid   [off|on]               Show or hide the grid 
%      XlimMode, YlimMode            Limit modes
%      Xlim, Ylim                    Axes limits
%      IOGrouping                    Grouping of input-output pairs
%         [none|inputs|output|all] 
%      InputLabels, OutputLabels     Input and output label styles
%      InputVisible, OutputVisible   Visibility of input and output
%                                    channels
%      Normalize [on|off]            Normalize repsonses
%      SettleTimeThreshold           Settling time threshold
%      RiseTimeLimits                Rise time limits
%
%   See also LSIMPLOT, INITIALPLOT, IMPULSEPLOT, STEPPLOT, SETOPTIONS,
%   GETOPTIONS.

%  Copyright 1986-2004 The MathWorks, Inc.
%  $Revision: 1.1.6.1 $   $Date: 2004/12/26 20:56:18 $

p = plotopts.TimePlotOptions(varargin{:});