What is wrong with: dbstop in sake_cut_block2 at 10 if 'i == 559' ?
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
Hello,
I would like to pause the execution of a function (I wrote) at a specific location, when an expression evaluates to true.
More specifically, I have a counter (i), and when it reaches a specific value, I want MATLAB to pause the execution and enter debug mode.
From the documentation (<http://uk.mathworks.com/help/matlab/ref/dbstop.html?refresh=true)>, I understand that the command below should do the trick, but the file does not pause.
dbstop in sake_cut_block2 at 10 if 'i == 559'
Can anyone tell me what I am doing wrong? - thanks!
Respuestas (2)
Image Analyst
el 13 de Nov. de 2015
I didn't see where they made the condition a string. What happens if you just use the condition as a boolean and not as a string literal?
dbstop in sake_cut_block2 at 10 if i == 559
4 comentarios
Karin
el 13 de Nov. de 2015
Karin
el 13 de Nov. de 2015
Karin
el 13 de Nov. de 2015
Image Analyst
el 13 de Nov. de 2015
Ah - a key thing you left out (the line of code it was supposed to stop on). Another thing - if the line you say to stop on is a comment, then it will stop at the next executable line of code.
Karin
el 13 de Nov. de 2015
0 votos
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!