Clear Filters
Clear Filters

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

4 views (last 30 days)

Answers (2)

Walter Roberson
Walter Roberson on 4 Apr 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 on 4 Apr 2023
tic
plot(t,v)
toc
  1 Comment
Walter Roberson
Walter Roberson on 4 Apr 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()

Sign in to comment.

Categories

Find more on Graphics Performance in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!