ysap
ysap

Reputation: 8125

Is there a 2D and 3D data visualization (plotting) plugin for eclipse?

I'm looking for a data visualization plugin that will let me view 2D and 3D charts of vectors and 2D arrays. My search couldn't find something to offer this functionality.

UPDATE: I mean to be able to see my signal processing data before and after applying a filter program, for example. I put in a noisy signal and see a nice sine wave when plotting the output. This is available in Analog Devices' VisualDSP++ IDE, for example, but I am not sure it is available on MS Visual Studio.

Upvotes: 4

Views: 2257

Answers (1)

rmoestl
rmoestl

Reputation: 3155

Concerning 3D visualization consider GEF3D (Graphical Editing Framework 3D) and for 2D visualization simple GEF. Both are some kind of frameworks for manipulating your data model with a graphical editor. The underlying framework is draw2d which might be more appropriate for your purpose. You could also look what technology is used in the Eclipse reporting framework BIRT (where drawing graphs should be an inherent part).

Upvotes: 2

Related Questions