Mercurial > hg > ltpda
comparison m-toolbox/test/test_norm.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 % Test det() operator for AOs. | |
2 % | |
3 % A Monsky 09-05-07 | |
4 % | |
5 % $Id: test_norm.m,v 1.11 2009/02/02 15:20:39 hewitson Exp $ | |
6 % | |
7 function test_norm() | |
8 | |
9 | |
10 % make test data | |
11 testmat=[1 2 3; 4 5 6; 7 8 9; 10 11 12]; | |
12 | |
13 % Load data into analysis objects | |
14 a1 = ao(testmat); | |
15 a1 = a1.setName('a1'); | |
16 | |
17 % Create plist | |
18 pl = plist('option', 'fro'); | |
19 pl1 = plist('option', 1); %is the 1-norm of X, the largest column sum, = max(sum(abs(X))). | |
20 % Calc norm | |
21 a2 = norm(a1, pl); | |
22 a3 = norm(a1, pl1); | |
23 % Plot | |
24 iplot(a1, a2, a3, plist('Markers', {'o', 'o', 'o'})) | |
25 | |
26 end | |
27 % END |