comparison m-toolbox/classes/@tsplotter/tsplotter.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 % TSPLOTTER provides plotting for ao/tsdata objects.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: TSPLOTTER provides plotting for ao/tsdata objects
5 %
6 %
7 % CONSTRUCTOR:
8 %
9 % p = tsplotter(objects)
10 % p = tsplotter(objects, pl)
11 %
12 % <a href="matlab:utils.helper.displayMethodInfo('tsplotter', 'tsplotter')">Parameters Description</a>
13 %
14 % VERSION: $Id: tsplotter.m,v 1.2 2011/04/08 08:56:38 hewitson Exp $
15 %
16 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17 classdef tsplotter < aoplotter
18
19 methods
20 % constructor
21 function p = tsplotter(varargin)
22 % call super
23 p = p@aoplotter(varargin{:});
24 end
25 end
26
27 end
28 % END