Mercurial > hg > ltpda
diff m-toolbox/test/xml_tests/test_history.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/test/xml_tests/test_history.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,19 @@ +clear all; + +a1 = ao(plist('waveform', 'sine wave', 'f', 1, 'phi', 0, 'nsecs', 10, 'fs', 100)); +a2 = ao(plist('waveform', 'sine wave', 'f', 1, 'phi', 0, 'nsecs', 10, 'fs', 100)); +a3 = a1 + a2; + +c1 = a3.hist; + +xmlfile = 'history.xml'; +save(c1, xmlfile); + +% load +c2 = history(xmlfile); + +if c1 ~= c2(1) + error('### history are not the same') +end + + \ No newline at end of file