Is there a way to stop compiling process when the model has started to compile in Simulink?

106 次查看(过去 30 天)
I am running Simulink with Raspberry Pi and when I had hit RUN button, I realized that the model had some errors, but couldn't find any option to TERMINATE THE COMPILATION PROCESS
Either I'd have to wait 20 minutes for the compilation process to complete or restart MATLAB.
I had to chose the 2nd one.
  3 个评论

请先登录,再进行评论。

回答(2 个)

Lev Vitkin
Lev Vitkin 2022-1-26
try
eval([bdroot '([],[],[],''term'')'])

Guy Rouleau
Guy Rouleau 2020-10-8
In MATLAB R2020b and before, there is no way to interrupt the model compilation.
We are aware that this is a common pain point and are working on a solution to address it. It should soon be possible ot interrupt the model compilation.
Thanks,
Guy
  3 个评论
Sohil Shrestha
Sohil Shrestha 2023-5-18
Is there a way to programmatically achieve this?
Basically probe a thread that is compiling to check if it has finished compiling, (if it is not, say taking too long to compile), interupt it and move on.
Sohil Shrestha
Sohil Shrestha 2023-5-18
Compiling it as follows:
Is there a programmatic way to detect and interrupt the compilation?
slreportgen.utils.compileModel(model)
compiles = slreportgen.utils.isModelCompiled(model);
if compiles
slreportgen.utils.uncompileModel(model);
end

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Raspberry Pi Hardware 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by