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