Location:
Search - xml matl
Search list
Description: The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa.
For example,
>> project.name = MyProject
>> project.id = 1234
>> project.param.a = 3.1415
>> project.param.b = 42
becomes with str=xml_format(project, off )
"<project>
<name>MyProject</name>
<id>1234</id>
<param>
<a>3.1415</a>
<b>42</b>
</param>
</project>"
On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
Platform: |
Size: 214016 |
Author: leiming691128 |
Hits:
Description: 本人练习将用SBML(系统生物学标记语言)编写的XML模型读入MATLAB结构体中的转换程序-I practice will be used to SBML (Systems Biology Markup Language) to prepare the XML model is read into MATLAB structure of the conversion process
Platform: |
Size: 3072 |
Author: zhongyan |
Hits: