view m-toolbox/test/MDC1/test_ltpda_mdc1_ifo2acc_inloop.m @ 42:f90d4f666cc7
database-connection-manager
Cleanup
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 18:04:34 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
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