Filter löschen
Filter löschen

Can we run simulink by m file when simulink interface is not opened

4 Ansichten (letzte 30 Tage)
ı want to run a simulink file by m file .So, ı use 'sim' command.
but when ı use it , simulink interface is opened.
Can we run simulink by m file when simulink interface is not opened

Akzeptierte Antwort

Teja Muppirala
Teja Muppirala am 7 Mär. 2013
Yes, you can use the LOAD_SYSTEM command to load the model into memory without bringing up the Simulink interface, for example:
>> model = 'sldemo_househeat';
>> load_system(model)
>> sim(model)

Weitere Antworten (2)

Azzi Abdelmalek
Azzi Abdelmalek am 7 Mär. 2013
Bearbeitet: Azzi Abdelmalek am 7 Mär. 2013
Yes you can do it, without even loading or opening your model

Abdullah Tahir
Abdullah Tahir am 13 Mai 2014
Can you please tell how to pause and resume the Matlab simulation from script file?

Kategorien

Mehr zu Programmatic Model Editing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by