How can I plot data as program runs?
34 次查看(过去 30 天)
显示 更早的评论
I would like to write a program to simulate planets in orbit for many iterations, for example to see if asteroids will form into a stable orbit after many thousands of iterations.
So far all I can find in Matlab is how to plot an equation etc. Matlab only makes the plot after it has finished doing the calculations.
Is it possible to show data as the program runs, showing for example orbits repeatedly over a long time while it continues running?
Do you have any examples of programs that work like that? I am not very familiar with object oriented programming so an example to play with would be very helpful.
Jonathan Pulman
0 个评论
回答(2 个)
per isakson
2013-5-29
编辑:per isakson
2013-5-30
You need to do something like
set( line_handle, 'Xdata', new_x_ value, 'Ydata', new_y_value )
2 个评论
Eugene
2013-5-30
I would use the method by setting the data in the handle. The previous line would be something like:
figure(1);
line_handle = plot(x,y);
while ~finished
[x,y] = calculate();
set( line_handle, 'Xdata', x, 'Ydata', y);
end
As an example:
>> figure(1); clf
>> h = plot([1:10],sin([1:10]*2*pi*0.05));
>> for w=0.01:0.01:0.1; set(h,'Ydata',sin([1:10]*2*pi*w)); pause(1); end
Image Analyst
2013-5-30
Of course have the plotting call inside your loop, but if it's a really intensive loop you're probably going to have to put in a "drawnow" right after the call to plot() (or whatever function you're using) to get it to refresh/update the screen immediately. And you may or may not want to plot just the last N points, say the last 500 points, so the call to plot doesn't get slower and slower while just painting over the same pixels on the screen.
3 个评论
Image Analyst
2013-5-30
It depends on what you want to do. Do you want to ADD one additional point to the existing points? Or do you want to clear all the points and plot just the last 500 or so? How many points describing your orbit do you think you'll eventually have if you let this thing run on and on? Millions?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!