"Speed up" functions in plot figure

4 views (last 30 days)
Jared
Jared on 12 Feb 2013
What is the "speed" of functions in a standalone Matlab executable created plot figure dependent on (the program is NOT running on a machine with a full version of Matlab)?
I am plotting several multi-million data point files, and functions in the plot figure such as pan and zoom, and even dragging the entire window, or closing it, are extremely sluggish.
It doesn't seem to be very dependent on the machine it is running on. Is the limiting factor the Matlab Runtime Environment? Is there anything I can do to improve performance?

Answers (1)

Sean de Wolski
Sean de Wolski on 12 Feb 2013
Edited: Sean de Wolski on 12 Feb 2013
Add a drawnow inside of anything sluggish. The drawnow() will flush the event queue which can help the graphics update if there is a backlog.
Of course there isn't really much reason to plot a millions of data points considering there probably aren't enough pixels for all of them. You might want to consider downsampling or changing how you're visualizing the data.
  2 Comments
Jared
Jared on 12 Feb 2013
I'll give that command a try. It's true you can't differential the data points when zoomed all the way out, but when you start zooming and panning, they can be seen. I can not downsample, but visulaizing differently might be a possibility. Any suggestions on that?
Sean de Wolski
Sean de Wolski on 12 Feb 2013
Well if you're just looking for data density (which I can't imagine much else with this many points), use a histogram. You'll have to describe in more detail or provide an example of what you have.

Sign in to comment.

Categories

Find more on Graphics Performance in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!