How convert simulink files to XML

我的未来我决定 提交于 2019-11-30 16:36:26

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);

I know of no easy solution.

However, there are a couple of libraries in Java that apparently can parse simulink files. They should be sufficient to give you an in-memory representation, and you could then use an XML binding to produce passable XML.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!