function schema
%  Definition of @hsvplot class (Hankel singular value plot)

%  Author(s): P. Gahinet
%  Copyright 1986-2002 The MathWorks, Inc. 
%  $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:53:06 $

% Find parent package
pkg = findpackage('resppack');

% Register class (subclass)
c = schema.class(pkg, 'hsvplot', findclass(pkg, 'respplot'));

% Public attributes
p = schema.prop(c, 'Options', 'MATLAB array');  
p.FactoryValue = struct(...
   'AbsTol',0,...
   'RelTol',1e-8,...
   'Offset',1e-8);

