Mercurial > hg > ltpda
comparison m-toolbox/classes/@aoplotter/aoplotter.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % AOPLOTTER provides plotting for all ao data objects. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: AOPLOTTER provides plotting for all ao data objects | |
5 % | |
6 % The plot functions defined in this class should be happy to work with all | |
7 % flavours of ao data objects. For more specific plotting functions, see | |
8 % the subclasses: tsplotter, fsplotter, xyplotter, cplotter. | |
9 % | |
10 % CONSTRUCTOR: | |
11 % | |
12 % p = aoplotter(objects) | |
13 % p = aoplotter(objects, pl) | |
14 % | |
15 % <a href="matlab:utils.helper.displayMethodInfo('aoplotter', 'aoplotter')">Parameters Description</a> | |
16 % | |
17 % VERSION: $Id: aoplotter.m,v 1.3 2011/04/08 08:56:38 hewitson Exp $ | |
18 % | |
19 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
20 classdef aoplotter < plotter | |
21 | |
22 methods | |
23 % constructor | |
24 function p = aoplotter(varargin) | |
25 % call super | |
26 p = p@plotter(varargin{:}); | |
27 end | |
28 | |
29 end | |
30 | |
31 methods (Static=true) | |
32 | |
33 varargout = makeAxisLabel(varargin) % prepare axis labels | |
34 | |
35 function out = VEROUT() | |
36 out = '$Id: aoplotter.m,v 1.3 2011/04/08 08:56:38 hewitson Exp $'; | |
37 end | |
38 | |
39 function ii = getInfo(varargin) | |
40 ii = utils.helper.generic_getInfo(varargin{:}, 'aoplotter'); | |
41 end | |
42 | |
43 function out = SETS() | |
44 out = {'Default'}; | |
45 end | |
46 | |
47 function out = getDefaultPlist(set) | |
48 | |
49 if ~utils.helper.ismember(lower(smodel.SETS), lower(set)) | |
50 error('### Unknown set [%s]', set); | |
51 end | |
52 | |
53 disp('here') | |
54 out = plotter.getDefaultPlist('Default'); | |
55 end | |
56 | |
57 end | |
58 | |
59 end | |
60 % END |