PID 616 has been terminated???
이전 댓글 표시
Hi all,
I keep getting the following output when attempting to run my Matlab code.
SUCCESS: The process with PID 616 has been terminated.
Does anyone know what this means and why it makes Matlab solve my code at a mind-numbingly slow rate? I would also love to know how to get rid of it. It just started showing up after I upgraded to matlab 2016b. When I was using Matlab 2015a I was not getting this output. I haven't changed my code at all so I'm not sure why this output keeps showing up.
댓글 수: 3
Walter Roberson
2017년 1월 30일
Does this happen if you do even minor things like
rand(3,5) * rand(5,7)
or does it happen at a particular point in your code? Do you have information about which routine might be triggering it?
I suspect you might have a stray routine in your path that is the same name as a MATLAB routine. Try using
restoredefaultpath
Zena Assaad
2017년 1월 31일
Walter Roberson
2017년 1월 31일
Does it happen even for typing at the command line? Does it only happen once in a MATLAB session? Does it happen for all of your functions or only for one particular function? If it is one particular function, please use
which -all TheFunctionName
to see if you have another function by that name.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Real-Time PID Autotuning에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!