Mercurial > hg > camir-aes2014
annotate toolboxes/xml_toolbox/xml_save.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 %XML_SAVE saves Matlab variables and data structures as XML |
wolffd@0 | 2 % |
wolffd@0 | 3 % SYNTAX |
wolffd@0 | 4 % xml_save( filename, var ) |
wolffd@0 | 5 % xml_save( filename, var, attswitch ) |
wolffd@0 | 6 % INPUT |
wolffd@0 | 7 % filename filename |
wolffd@0 | 8 % var Matlab variable or structure to store in file. |
wolffd@0 | 9 % attswitch optional, 'on' stores XML type attributes (default), |
wolffd@0 | 10 % 'off' doesn't store XML type attributes |
wolffd@0 | 11 % |
wolffd@0 | 12 % NOTE: Matlab data stored with the 'on' attribute (default) can be reloaded |
wolffd@0 | 13 % in its original form into Matlab with the XML_LOAD command. |
wolffd@0 | 14 % |
wolffd@0 | 15 % OUTPUT |
wolffd@0 | 16 % none |
wolffd@0 | 17 % |
wolffd@0 | 18 % RELATED |
wolffd@0 | 19 % xml_load, xml_format, xml_formatany, xml_parse, xml_parseany, xml_help, (xmlread, xmlwrite) |
wolffd@0 | 20 |
wolffd@0 | 21 % Copyright (C) 2002-2005, University of Southampton |
wolffd@0 | 22 % Author: Dr Marc Molinari <m.molinari@soton.ac.uk> |
wolffd@0 | 23 % $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$ |
wolffd@0 | 24 |