Mercurial > hg > ltpda
comparison m-toolbox/test/test_ao_freq_series.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 function test_ao_freq_series | |
2 | |
3 % Test script for frequency series AO constructor | |
4 % | |
5 % M Hewitson 23-02-08 | |
6 % | |
7 % $Id: test_ao_freq_series.m,v 1.1 2008/02/24 21:14:43 hewitson Exp $ | |
8 % | |
9 | |
10 | |
11 %% default plist | |
12 pl = plist('fsfcn', '1e-15.*(1e-3./f.^2 + 1e-10./f.^4)', 'nf', 100); | |
13 | |
14 a1 = ao(pl); | |
15 iplot(a1, plist('Markers', 'x')) | |
16 | |
17 %% Specify frequency scale | |
18 | |
19 pl = plist('fsfcn', '1./f.^2', 'scale', 'lin', 'nf', 100); | |
20 a1 = ao(pl); | |
21 iplot(a1, plist('Markers', 'x')) |