diff m-toolbox/test/test_ao_find.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/test/test_ao_find.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,37 @@
+% TEST_AO_FIND test the find function of AO class.
+%
+% M Hewitson 14-05-07
+%
+% $Id: test_ao_find.m,v 1.10 2009/02/02 15:20:38 hewitson Exp $
+%
+function test_ao_find()
+  
+  % Make test AOs
+  
+  nsecs = 10;
+  fs    = 1000;
+  
+  pl = plist('nsecs', nsecs, 'fs', fs, 'tsfcn', 'sin(2*pi*7.433*t) + randn(size(t))');
+  
+  a1 = ao(pl);
+  
+  % Make spectrum
+  a1xx = psd(a1);
+  
+  % Select Times
+  a1s = find(a1, 'x < 1', 'x > 0.1');
+  a2s = find(a1, 'y > 1');
+  
+  [hf, ha, hl] = iplot([a1 a2s]);
+  [hf, ha, hl] = iplot([a1 a1s a2s]);
+  set(hl(2), 'Marker', 'o', 'LineStyle', 'None')
+  
+  
+  % Select Frequencies
+  a1xxs = select(a1xx, [1 2 3], [4 5 6], plist('samples', [7 8 9]));
+  
+  [hf, ha, hl] = iplot([a1xx a1xxs]);
+  set(hl(2), 'Marker', 'o', 'LineStyle', 'None')
+  
+end
+% END
\ No newline at end of file