view m-toolbox/test/test_norm.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +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