This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Threads and Synchronization and the fly likes Plot update error - JMathPlot Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Threads and Synchronization
Reply Bookmark "Plot update error - JMathPlot" Watch "Plot update error - JMathPlot" New topic
Author

Plot update error - JMathPlot

Richard Woodward
Greenhorn

Joined: Jan 28, 2010
Posts: 3

I'm using the JMathPlot library to produce a simple graph, in this case it's a 3D which is updated for every iteration in the for loop. However, the speed in which it loops I'm getting:



and



Which to my understanding is something to do with the AWT thread and the main thread not getting along. I know that I need to update the graphic thread in a special way, just not sure how. Here is my code, if anyone could suggest how I update the plot (repaint, I guess) without the error, that would be great.


Steve Luke
Bartender

Joined: Jan 28, 2003
Posts: 3090
    
    5

It looks like you have to build the plot (call the plot.addGridPlot(...) methods) prior to trying to display it.


Steve
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Plot update error - JMathPlot
 
Similar Threads
How to plot a graph in Java ?
Garbage collection
How do I handle "The Matrix" ?
Array overwritten
need help again