Close the prompt to save simulink model using Matlab code

조회 수: 2 (최근 30일)
Seshasai Seera
Seshasai Seera 2021년 1월 4일
댓글: Uday Pradhan 2021년 1월 7일
I am working on FOR loop, where simulink model will be run in a separate matlab window and closed using !taskkill \pid . In one of the simulink model file, I am getting a message prompt saying 'Save "Simulink Model" before closing' 1. Yes 2. No 3. Cancel.
I donot want to save the model. So, I had to click 2.No everytime.
  1. Is it possible to select 2.No everytime?.
  2. It is even better if you can suggest a way to avoid getting such a prompt, by changing some settings.

채택된 답변

Uday Pradhan
Uday Pradhan 2021년 1월 7일
Hi Seshasai,
You could use the "/f" parameter with taskkill to forcefully terminate the process. Ofcourse, the changes made to that process will not be saved in this case. For example:
!taskkill /pid 13768 /f
If you want to run and close Simulink models in the same MATLAB instance, I suggest using the "bdclose" function which ignores the "Save" dialog box and reverts any changes before closing the model. Documentation link: bdclose
  댓글 수: 2
Seshasai Seera
Seshasai Seera 2021년 1월 7일
Thanks!! using /f has worked for me.
Uday Pradhan
Uday Pradhan 2021년 1월 7일
Great! Do accept my answer so that it helps other community members who might have similar doubts, thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by