Info

この質問は閉じられています。 編集または回答するには再度開いてください。

debugging operation

2 ビュー (過去 30 日間)
som
som 2012 年 5 月 8 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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?

回答 (1 件)

Daniel Shub
Daniel Shub 2012 年 5 月 8 日
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

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by