Mercurial > hg > ltpda
comparison m-toolbox/test/MDC1/test_ltpda_mdc1_input_noises.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 % Tests the function that returns input noises for MDC1. | |
2 % | |
3 % M Hewitson 11-04-08 | |
4 % | |
5 % $Id: test_ltpda_mdc1_input_noises.m,v 1.1 2008/04/11 12:57:02 hewitson Exp $ | |
6 % | |
7 | |
8 clear all; | |
9 | |
10 | |
11 % get ifo noise | |
12 nifo = ltpda_mdc1_input_noises(plist('source', 'ifo')); | |
13 | |
14 % get sc noise | |
15 nsc = ltpda_mdc1_input_noises(plist('source', 'sc')); | |
16 | |
17 % get tm noise | |
18 ntm = ltpda_mdc1_input_noises(plist('source', 'tm')); | |
19 | |
20 | |
21 iplot(nifo) | |
22 iplot(nsc, ntm) | |
23 | |
24 | |
25 % END |