Mercurial > hg > ltpda
comparison m-toolbox/test/ao_class_test.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 function ao_class_test() | |
2 | |
3 % AO_CLASS_TEST Test analysis object class | |
4 % | |
5 % M Hewitson 01-02-07 | |
6 % | |
7 % $Id: ao_class_test.m,v 1.8 2009/02/02 15:20:38 hewitson Exp $ | |
8 % | |
9 | |
10 %% Constructor 1 | |
11 a = ao() | |
12 | |
13 %% Constructor 2 - cdata | |
14 | |
15 a = ao(1) | |
16 | |
17 %% Constructor 3 - time-series data | |
18 | |
19 a = ao(1:10,1); | |
20 | |
21 | |
22 | |
23 |