view m-toolbox/test/test_norm.m @ 5:5a49956df427 database-connection-manager

LTPDAPreferences panel for new LTPDADatabaseConnectionManager
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% Test det() operator for AOs.
%
% A Monsky 09-05-07
%
% $Id: test_norm.m,v 1.11 2009/02/02 15:20:39 hewitson Exp $
%
function test_norm()
  
  
  % make test data
  testmat=[1 2 3; 4 5 6; 7 8 9; 10 11 12];
  
  % Load data into analysis objects
  a1 = ao(testmat);
  a1 = a1.setName('a1');
  
  % Create plist
  pl  = plist('option', 'fro');
  pl1 = plist('option', 1); %is the 1-norm of X, the largest column sum, = max(sum(abs(X))).
  % Calc norm
  a2 = norm(a1, pl);
  a3 = norm(a1, pl1);
  % Plot
  iplot(a1, a2, a3, plist('Markers', {'o', 'o', 'o'}))
  
end
% END