Borrar filtros
Borrar filtros

In this code, how can I add a time function for how long it takes to draw the graph?

4 visualizaciones (últimos 30 días)

Respuestas (2)

Walter Roberson
Walter Roberson el 4 de Abr. de 2023
You could add tic before the plot() and drawnow(); toc after the title()...
But really you cannot measure it. Once the graph objects have been finalized they are sent to an independent graphics thread for rendering, and there is no way to measure the time taken in the rendering.
And you have to be specific about graphics execution time: do you include the time required for the graphics card to execute? Do you include the time for the graphics card to send the pixels to the display? Do you include the time for the display to draw?

Joe Vinciguerra
Joe Vinciguerra el 4 de Abr. de 2023
tic
plot(t,v)
toc
  1 comentario
Walter Roberson
Walter Roberson el 4 de Abr. de 2023
graphics are not sent to rendering until the graphics queue is flushed:
  • pause()
  • drawnow()
  • waitfor() /uiwait()
  • figure() or uifigure()
  • return to command line because program ends or because of debugging or keyboard()
So in the above, the graphics would not have been sent to rendering at all until after the toc()

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by