Mercurial > hg > ltpda
comparison m-toolbox/test/xml_tests/test_mfir.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', 'lowpass', 'Win', specwin('Kaiser', 10, 150), 'fs', 100, 'fc', 20); | |
4 f1 = mfir(pl); | |
5 | |
6 xmlfile = 'mfir.xml'; | |
7 save(f1, xmlfile); | |
8 | |
9 % load | |
10 f2 = mfir(xmlfile); | |
11 | |
12 if f1 ~= f2 | |
13 error('### mfir filters are not the same') | |
14 end |