Question: Plotting while calculation

In a loop I m calculating x and y coordinates of a point. Then, I m plotting this points with plot command. But my loop takes too much time so I haven’t seen anything until the loop end. Is there any way to see these points immediately? My code is like: data := []; For i from 1 to LargeInteger do … x := … y := … … data := [ op(data), [x,y] ]; … od; plot(data, style=point); Thanks...
Please Wait...