Documentation of gett


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


Function Synopsis

T=gett(th);

Help text

GETT   Gets the sampling interval for a model.
   T = GETT(TH)

   T: The sampling interval
   TH: The model, defined in the THETA-format (See also THETA.)
   See also SETT.

Cross-Reference Information

This function is called by

Listing of function gett

function T=gett(th);

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

if nargin < 1
   disp('Usage: T = GETT(TH)')
   return
end

T=th(1,2);