フィルターのクリア

cputime() related question

1 回表示 (過去 30 日間)
D_coder
D_coder 2020 年 7 月 15 日
コメント済み: John D'Errico 2020 年 7 月 15 日
Just a quick question
is there a difference between
t1 = cputitme();
t2 = cputime();
t = t2 - t1
and
t1 = cputtime();
t = cputime() - t1;
Both give different answers to me. In fact the second one is way faster for my program.
  1 件のコメント
John D'Errico
John D'Errico 2020 年 7 月 15 日
There is no significant difference, except that you have spelled it three different ways, so it is unlikely the code you wrote actually works. ;)
But what do you mean by one of those calls is faster than the other? cputime does not measure time well enough to clearly be able to tell you such a short time interval. Even the slightest variation of something running on your computer in the background will be enough to blow that tiny difference out of the water.

サインインしてコメントする。

回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by