Borrar filtros
Borrar filtros

cputime() related question

1 visualización (últimos 30 días)
D_coder
D_coder el 15 de Jul. de 2020
Comentada: John D'Errico el 15 de Jul. de 2020
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 comentario
John D'Errico
John D'Errico el 15 de Jul. de 2020
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.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by