comparison m-toolbox/test/xml_tests/test_zero.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 z1 = zero(23.3, 0.6);
4
5 xmlfile = 'zero.xml';
6 save(z1, xmlfile);
7
8 % load
9 z2 = zero(xmlfile);
10
11 if z1 ~= z2
12 error('### zeros are not the same')
13 end