Mercurial > hg > ltpda
view m-toolbox/test/MDC1/test_ltpda_mdc1_ifo2acc_inloop.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% Test the computation of the in-loop acceleration terms % % M Hewitson 11-04-08 % % $Id: test_ltpda_mdc1_ifo2acc_inloop.m,v 1.1 2008/04/14 15:39:44 hewitson Exp $ % % Make a white-noise AO fs = 10; nsecs = 100000; o1 = ao(plist('tsfcn', 'randn(size(t))', 'fs', fs, 'nsecs', nsecs)); o12 = ao(plist('tsfcn', 'randn(size(t))', 'fs', fs, 'nsecs', nsecs)); [a1, a2] = ltpda_mdc1_ifo2acc_inloop(plist('o1', o1, 'o12', o12)); % Spectra a1xx = ltpda_lpsd(a1); a2xx = ltpda_lpsd(a2); iplot(a1xx,a2xx) % END