comparison m-toolbox/test/tdfit/test_xml_tdfit_read.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 reading back noise-subtraction result from XML
2
3
4 clear;
5
6 x12nsxx = ao('x12nsxx.xml');
7 x12xx = ao('x12xx.xml');
8 x12fxx = ao('x12fxx.xml');
9
10 figure
11 plot(x12nsxx.hist)
12
13 figure
14 plot([x12xx x12nsxx])
15 ltpda_allxaxis(0.001, 1);
16 subplot(3,1,1:2)
17 legend('lpsd(X12)', 'lpsd(X12 with noise subtracted)');
18
19