view m-toolbox/classes/@aoplotter/aoplotter.m @ 25:79dc7091dbbc
database-connection-manager
Update tests
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % AOPLOTTER provides plotting for all ao data objects.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: AOPLOTTER provides plotting for all ao data objects
+ − %
+ − % The plot functions defined in this class should be happy to work with all
+ − % flavours of ao data objects. For more specific plotting functions, see
+ − % the subclasses: tsplotter, fsplotter, xyplotter, cplotter.
+ − %
+ − % CONSTRUCTOR:
+ − %
+ − % p = aoplotter(objects)
+ − % p = aoplotter(objects, pl)
+ − %
+ − % <a href="matlab:utils.helper.displayMethodInfo('aoplotter', 'aoplotter')">Parameters Description</a>
+ − %
+ − % VERSION: $Id: aoplotter.m,v 1.3 2011/04/08 08:56:38 hewitson Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − classdef aoplotter < plotter
+ −
+ − methods
+ − % constructor
+ − function p = aoplotter(varargin)
+ − % call super
+ − p = p@plotter(varargin{:});
+ − end
+ −
+ − end
+ −
+ − methods (Static=true)
+ −
+ − varargout = makeAxisLabel(varargin) % prepare axis labels
+ −
+ − function out = VEROUT()
+ − out = '$Id: aoplotter.m,v 1.3 2011/04/08 08:56:38 hewitson Exp $';
+ − end
+ −
+ − function ii = getInfo(varargin)
+ − ii = utils.helper.generic_getInfo(varargin{:}, 'aoplotter');
+ − end
+ −
+ − function out = SETS()
+ − out = {'Default'};
+ − end
+ −
+ − function out = getDefaultPlist(set)
+ −
+ − if ~utils.helper.ismember(lower(smodel.SETS), lower(set))
+ − error('### Unknown set [%s]', set);
+ − end
+ −
+ − disp('here')
+ − out = plotter.getDefaultPlist('Default');
+ − end
+ −
+ − end
+ −
+ − end
+ − % END