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

4 次查看(过去 30 天)

回答(2 个)

Walter Roberson
Walter Roberson 2023-4-4
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 2023-4-4
tic
plot(t,v)
toc
  1 个评论
Walter Roberson
Walter Roberson 2023-4-4
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()

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Graphics Performance 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by