Why does Matlab execute my code sometimes twice?
5 次查看(过去 30 天)
显示 更早的评论
Sometimes when I press the run button in the Editor, the code is executed twice (or even more times). I can't exactly define when it happens, but it happened even to this very simple program code:
clear all
for z=1:5
z
pause(1)
end
Have you experienced similar problems? Any idea why it can happen?
8 个评论
Image Analyst
2021-8-7
@Alvin Stroyny, then same answer. Either you are calling it recursively or clicking the button twice. Maybe your keyboard is not being properly debounced - try a new one. Or try putting a breakpoint there.
John D'Errico
2021-8-7
编辑:John D'Errico
2021-8-7
Since this happens after a mouse click, I might check to see if you have some issue with your mouse. For example, swap a different mouse in. Or, see if it also repeats when using the run command directly, since you can run a script from the command line.
回答(1 个)
Image Analyst
2013-9-24
Most likely, you clicked on the green "Run" triangle twice, or you typed F5 twice. Either of those will cause it to run once, then immediately run again after it finished (I actually tried it).
2 个评论
Image Analyst
2013-9-24
Step through it one line at a time and see where it goes after you reach the end of the code.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!