문제

I have the following question:

Is there a Tool to make an contureplot in Java during the runtime out of large data arrays?

I found many post related to this question (also here contourplot question and another question) but I didn't found any solution to make a fast contourplot out of large arrays.

I have tried to do it with Jsci and also with jfreechart. With Jsci I got problems displaying the image and with jfreechart it takes veeeerrrrrryyyyy long to make a plot.

What I seek is somthing like matplotlib in python. And the image should look somehow like this

도움이 되었습니까?

해결책

You may be looking for XYBlockRenderer. The image shown in the API is from XYBlockChartDemo1 in the demo. It appears to render 10,000 blocks, 100 x 100, nearly instantly. If your experience varies, editing your question to include a sscce might reveal the problem.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top