comparison m-toolbox/test/MDC1/test_ltpda_mdc1_ifo2acc_inloop.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 the computation of the in-loop acceleration terms
2 %
3 % M Hewitson 11-04-08
4 %
5 % $Id: test_ltpda_mdc1_ifo2acc_inloop.m,v 1.1 2008/04/14 15:39:44 hewitson Exp $
6 %
7
8
9 % Make a white-noise AO
10 fs = 10;
11 nsecs = 100000;
12
13 o1 = ao(plist('tsfcn', 'randn(size(t))', 'fs', fs, 'nsecs', nsecs));
14 o12 = ao(plist('tsfcn', 'randn(size(t))', 'fs', fs, 'nsecs', nsecs));
15
16 [a1, a2] = ltpda_mdc1_ifo2acc_inloop(plist('o1', o1, 'o12', o12));
17
18 % Spectra
19 a1xx = ltpda_lpsd(a1);
20 a2xx = ltpda_lpsd(a2);
21
22 iplot(a1xx,a2xx)
23
24 % END