comparison m-toolbox/test/xml_tests/test_time.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 clear all;
2
3 t1 = time();
4
5 xmlfile = 'time.xml';
6 save(t1, xmlfile)
7
8 % load
9 t2 = time(xmlfile);
10
11 if t1 ~= t2
12 error('### times are not the same')
13 end
14