Mercurial > hg > ltpda
comparison m-toolbox/test/test_diag.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 % Tests diag() operator for AOs. | |
2 % | |
3 % A Monsky 09-05-07 | |
4 % | |
5 % $Id: test_diag.m,v 1.11 2009/02/02 15:20:38 hewitson Exp $ | |
6 % | |
7 function test_diag() | |
8 | |
9 | |
10 % make test data files | |
11 testmat=[1 2 3; 4 5 6; 7 8 9]; | |
12 | |
13 % Load data into analysis objects | |
14 | |
15 a1 = ao(testmat); | |
16 a1 = a1.setName; | |
17 | |
18 % Create plist | |
19 pl = plist('option', 1); | |
20 | |
21 % Calc diagonal | |
22 a2 = diag(a1, pl); | |
23 | |
24 % Plot | |
25 iplot(a1, a2) | |
26 | |
27 end | |
28 % END |