"Speed up" functions in plot figure
显示 更早的评论
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?
回答(1 个)
Sean de Wolski
2013-2-12
编辑:Sean de Wolski
2013-2-12
0 个投票
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 个评论
Jared
2013-2-12
Sean de Wolski
2013-2-12
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!