How convert simulink files to XML

后端 未结 2 576
粉色の甜心
粉色の甜心 2021-01-03 11:52

I need convert an Simulink file (.mdl) to an XML file, after any searches i\'m not found any content to help me with this problem.

You\'d know some way or ready solu

2条回答
  •  误落风尘
    2021-01-03 12:32

    Starting in R2008b, you can export an .mdl file to an .xml file using save_system,

    >> save_system('model.mdl', 'model_xml.xml','ExportToXML', true);
    

提交回复
热议问题