Mercurial > hg > camir-aes2014
annotate toolboxes/xml_toolbox/xml_parseany.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_PARSEANY parses XML strings and convert content into Matlab structure |
wolffd@0 | 2 % |
wolffd@0 | 3 % SYNTAX |
wolffd@0 | 4 % V = xml_parseany( xmlstr ) |
wolffd@0 | 5 % |
wolffd@0 | 6 % INPUT |
wolffd@0 | 7 % xmlstr xml string, possibly from file with function xml_load.m |
wolffd@0 | 8 % |
wolffd@0 | 9 % OUTPUT |
wolffd@0 | 10 % v Matlab variable or cell array. |
wolffd@0 | 11 % |
wolffd@0 | 12 % RELATED |
wolffd@0 | 13 % xml_format, xml_formatany, xml_parse, xml_load, xml_save, (xmlread, xmlwrite) |
wolffd@0 | 14 |
wolffd@0 | 15 % Copyright (C) 2002-2005, University of Southampton |
wolffd@0 | 16 % Author: Dr Marc Molinari <m.molinari@soton.ac.uk> |
wolffd@0 | 17 % $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$ |
wolffd@0 | 18 |
wolffd@0 | 19 |
wolffd@0 | 20 |