diff m-toolbox/test/test_specwin_class.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_specwin_class.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,22 @@
+function test_specwin_class()
+
+% TEST_SPECWIN_CLASS test the specwin class.
+% 
+% M Hewitson 18-05-07
+% 
+% $Id: test_specwin_class.m,v 1.5 2008/06/20 10:52:13 hewitson Exp $
+% 
+
+wins = specwin.getTypes;
+N    = 100;
+
+% Kaiser
+wn = specwin('Kaiser', N, 200);
+
+
+for win = wins
+  wn = specwin(char(win), N);
+end
+
+
+% END
\ No newline at end of file