Save runned simulink file
조회 수: 5 (최근 30일)
이전 댓글 표시
Is there a possibility to save a already runned simulink file, so that i don't have to run it again, when i open it again?
댓글 수: 0
답변 (1개)
Ayush Yadav
2022년 6월 7일
Hi,
You can try using save_system for saving your simulink model.
Also, you can refer the documentation of save_system to learn what all parameters it can take. For example:
% Save the model, save the model workspace, break links to user-defined library blocks,
% and overwrite if the file has changed on disk,
save_system('mymodel','mynewmodel','SaveModelWorkspace',
true,'BreakUserLinks',true,'OverwriteIfChangedOnDisk',true)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!