Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

debugging operation

1 vue (au cours des 30 derniers jours)
som
som le 8 Mai 2012
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hi, I wrote a program and I want to debug it usnig 'keyboard command'.
clc; clear; tic ;
for i=1:100
a=i^2+i+10
keyboard
end
toc
I want to finish debugging operation after seeing some results for i=1,2,3, etc, depend on the my interest. How can I do it?

Réponses (1)

Daniel Shub
Daniel Shub le 8 Mai 2012
I am not quite sure what you are asking but what about
clc; clear; tic ;
for i=1:100
a=i^2+i+10
if i < 3
keyboard
end
end
toc

Cette question est clôturée.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by