Mercurial > hg > ltpda
comparison m-toolbox/test/LTPDA_training/topic2/mk_testdata.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 %% Make test data for whiten1D | |
2 fs = 100; | |
3 a = ao(plist('tsfcn', 'randn(size(t))', 'fs', fs, 'nsecs', 1000,'yunits','V')); | |
4 | |
5 % filter | |
6 pzm = pzmodel(1e-1, {[0.1 3]}, {[10 2]}); | |
7 ft = miir(pzm,plist('fs',fs)); | |
8 | |
9 af = filter(a, ft); | |
10 save(af,'whiten.mat'); | |
11 |