comparison m-toolbox/test/xml_tests/test_miir.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 clear all;
2
3 pl = plist('type', 'bandpass', 'fs', 1000, 'fc', [50 100], 'order', 3);
4 f1 = miir(pl);
5
6 xmlfile = 'miir.xml';
7 save(f1, xmlfile);
8
9 % load
10 f2 = miir(xmlfile);
11
12 if f1 ~= f2
13 error('### miir filters are not the same')
14 end
15