Daniel@0: %XML_SAVE saves Matlab variables and data structures as XML Daniel@0: % Daniel@0: % SYNTAX Daniel@0: % xml_save( filename, var ) Daniel@0: % xml_save( filename, var, attswitch ) Daniel@0: % INPUT Daniel@0: % filename filename Daniel@0: % var Matlab variable or structure to store in file. Daniel@0: % attswitch optional, 'on' stores XML type attributes (default), Daniel@0: % 'off' doesn't store XML type attributes Daniel@0: % Daniel@0: % NOTE: Matlab data stored with the 'on' attribute (default) can be reloaded Daniel@0: % in its original form into Matlab with the XML_LOAD command. Daniel@0: % Daniel@0: % OUTPUT Daniel@0: % none Daniel@0: % Daniel@0: % RELATED Daniel@0: % xml_load, xml_format, xml_formatany, xml_parse, xml_parseany, xml_help, (xmlread, xmlwrite) Daniel@0: Daniel@0: % Copyright (C) 2002-2005, University of Southampton Daniel@0: % Author: Dr Marc Molinari Daniel@0: % $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$ Daniel@0: