Tic and Toc question

2 ビュー (過去 30 日間)
Jason
Jason 2011 年 8 月 10 日
Hi everyone, I just have a quick question. How would I numerate my tic and toc so that I can make my program stop after a certain amount of time? I'm trying to say like, while tic<1 (second), continue, but I am most likely doing it wrong. Can anyone help?

採用された回答

Daniel Shub
Daniel Shub 2011 年 8 月 10 日
You are close ...
tic
while toc < 1
%do something
end

その他の回答 (1 件)

Paulo Silva
Paulo Silva 2011 年 8 月 10 日
tStart = tic;
for n=1:2000
n
if toc(tStart)>=0.1 %100 miliseconds
disp('time exceeded')
break %if it's a function use return
end
end

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by