How to convert Simulink model into XML file ?

I tried following.
>> sys='Example'; % Model name is Example
>> save_system(sys, 'exported_file_name.xml', 'ExportToXML', true)
I am getting following error.
Error using save_system (line 38)
Invalid Simulink object name: Example

回答 (2 件)

TAB
TAB 2018 年 7 月 4 日
編集済み: TAB 2018 年 7 月 4 日

0 投票

You need to first load or open the model.
sys='Example'; % Model name is Example
open_system(sys); % Example model must be in current folder or Matlab path
save_system(sys, 'exported_file_name.xml', 'ExportToXML', true);
hao wang
hao wang 2019 年 12 月 17 日

0 投票

oh,I am getting following warning.
warning: The 'ExportToXML' option is no longer supported and will be removed in a future release.
How can I do?

2 件のコメント

Iris Iris
Iris Iris 2020 年 2 月 18 日
Have you solved this problem?
Abdulkadir Eroglu
Abdulkadir Eroglu 2020 年 7 月 21 日
Me too, waiting for an answer here... Though i have read in this article that slx is based on opc open package convention:
not sure if it helps solve the problem though...

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeProgrammatic Model Editing についてさらに検索

質問済み:

2018 年 7 月 4 日

コメント済み:

2020 年 7 月 21 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by