annotate toolboxes/xml_toolbox/xml_save.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 %XML_SAVE saves Matlab variables and data structures as XML
Daniel@0 2 %
Daniel@0 3 % SYNTAX
Daniel@0 4 % xml_save( filename, var )
Daniel@0 5 % xml_save( filename, var, attswitch )
Daniel@0 6 % INPUT
Daniel@0 7 % filename filename
Daniel@0 8 % var Matlab variable or structure to store in file.
Daniel@0 9 % attswitch optional, 'on' stores XML type attributes (default),
Daniel@0 10 % 'off' doesn't store XML type attributes
Daniel@0 11 %
Daniel@0 12 % NOTE: Matlab data stored with the 'on' attribute (default) can be reloaded
Daniel@0 13 % in its original form into Matlab with the XML_LOAD command.
Daniel@0 14 %
Daniel@0 15 % OUTPUT
Daniel@0 16 % none
Daniel@0 17 %
Daniel@0 18 % RELATED
Daniel@0 19 % xml_load, xml_format, xml_formatany, xml_parse, xml_parseany, xml_help, (xmlread, xmlwrite)
Daniel@0 20
Daniel@0 21 % Copyright (C) 2002-2005, University of Southampton
Daniel@0 22 % Author: Dr Marc Molinari <m.molinari@soton.ac.uk>
Daniel@0 23 % $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$
Daniel@0 24