view m-toolbox/test/test_ao_provenance.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

function test_ao_provenance()

% TEST_AO_PROVENANCE tests the provenance propery of AO class, especially
% for reading/writing XML.
% 
% M Hewitson 07-05-07
% 
% $Id: test_ao_provenance.m,v 1.2 2008/09/19 14:03:50 ingo Exp $
% 

a = ao('data1.txt')

save(a, 'data1.xml');

b = ao('data1.xml')

c = b./a

iplot(c)


% END