Mercurial > hg > ltpda
comparison m-toolbox/test/test_plotter_factory.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 % Test script for the plotterFactory and associated plotters | |
2 | |
3 a = ao(1); | |
4 b = ao(2); | |
5 t1 = ao(plist('tsfcn', 't', 'fs', 10, 'nsecs', 10)); | |
6 | |
7 p1 = plotterFactory.makePlotter(t1) | |
8 methods(p1) | |
9 class(p1) | |
10 p1.singlePlots | |
11 | |
12 p2 = plotterFactory.makePlotter(a,b) | |
13 methods(p2) | |
14 class(p2) | |
15 p2.singlePlots | |
16 |