フィルターのクリア

How to delete mdl file with comand line?

4 ビュー (過去 30 日間)
Tomas Iesmantas
Tomas Iesmantas 2011 年 5 月 17 日
Hello, I have a task to create automatically mdl (simulink) model with command line, which can be done by this line: new_system('new'). I have the m file which when executed loads simulink library, creates new mdl and creates whole model that I need. I know that the line delete('new.mdl') will errase mdl file from my working catalog, but when I execute once again my m file it sais that such model ("new") already exist. Is there any posibility to absolutely errase from computer memory mdl object?

採用された回答

Arnaud Miege
Arnaud Miege 2011 年 5 月 17 日
It's probably because the file new.mdl, although erased, is still loaded in memory. Try using bdclose on the Simulink model to close it before delete the file.
HTH,
Arnaud
  1 件のコメント
Kaustubha Govind
Kaustubha Govind 2011 年 5 月 17 日
To be more precise, you should use:
close_system('new')

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgrammatic Model Editing についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by