open simulink project without opening all tabs

조회 수: 5 (최근 30일)
Nigel Holmes
Nigel Holmes 2019년 3월 28일
답변: Aniket 2025년 1월 30일
My Simulink project has previously been saved with too many open tabs.
The project will not now reopen because the PC runs out of memory trying to open all the previously open tabs (Matlab crashes)
How can I re-open my project without reopening all the tabs which were previously open when I saved the project?
Thanks.

답변 (1개)

Aniket
Aniket 2025년 1월 30일
You can open your Simulink Project without opening tabs by using the "load_system" function. This function loads a Simulink model, without opening any previously openened subsytem or model tabs. Once model is loaded, it can be opened by setting the appropriate parameters in MATLAB command window like shown below:
>> sys = load_system('<model>');
>> set_param(sys, 'Open', 'on');
You can find more details regarding the "load_system" and "set_param" using the following documentations:

카테고리

Help CenterFile Exchange에서 Create Large-Scale Model Components에 대해 자세히 알아보기

태그

제품


릴리스

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by