comparison m-toolbox/test/test_simulated_data.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 making simulated data AOs.
2 %
3 % M Hewitson 17-03-07
4 %
5 % $Id: test_simulated_data.m,v 1.11 2009/02/02 15:20:37 hewitson Exp $
6 %
7 function test_simulated_data()
8
9 % Make some simulated data
10 nsecs = 10;
11 fs = 1000;
12
13 pl = plist('nsecs', nsecs, 'fs', fs, 'tsfcn', 'sin(2*pi*7.433*t) + randn(size(t))');
14 a = ao(pl);
15 iplot(a);
16
17 end
18
19 % END