how can i find out how many time my for runs?

2 次查看(过去 30 天)
so i have a code.
i put it in a for loop to repeat it 10.000 Times!
I want to know how many times it has been repeated?
how could i found this?

采纳的回答

Image Analyst
Image Analyst 2021-6-27
Try this
startTime = tic;
loopCounter = 1;
for k = 1 : 10
% Some code which may cause the loop to break early....
if iNeedToQuitEarlyCondition
% Something happened where we no longer want to do all 10 iterations.
break;
end
% Increment how many times the loop actually finished:
loopCounter = loopCounter + 1;
end
fprintf('The loop executed %d times in %d seconds.\n', loopCounter, toc(startTime));

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by