digitalmars.D.learn - plotting data in D
- nobody_ (3/3) Jan 09 2007 Is there anything around to help me plot allot of data?
- Hasan Aljudy (6/11) Jan 09 2007 I think there's a tool on linux called gplot? I'm not sure what its
- gareis (4/5) Jan 09 2007 Gnuplot. It's rather simple (but not terribly easy) to use and has a
- Hasan Aljudy (11/17) Jan 09 2007 I mentioned it because I remember using it for an assignment in some
- nobody_ (5/15) Jan 10 2007 This is exactly what I need to do, but how interactive(mouse zoom etc.) ...
Is there anything around to help me plot allot of data? I couldn't really find anything. Any advice is appreciated :)
Jan 09 2007
I think there's a tool on linux called gplot? I'm not sure what its called, but it takes text input and plots it. I'm sure there must be other tools around that do a similar thing. You can use your D program to output the text data and feet it to such tool which will plot it for you. nobody_ wrote:Is there anything around to help me plot allot of data? I couldn't really find anything. Any advice is appreciated :)
Jan 09 2007
Hasan Aljudy wrote:I think there's a tool on linux called gplot?Gnuplot. It's rather simple (but not terribly easy) to use and has a very good help system. Just go to a terminal, type 'gnuplot', then 'help plotting' and 'help plot' to get started.
Jan 09 2007
gareis wrote:Hasan Aljudy wrote:I mentioned it because I remember using it for an assignment in some course. Our usage of it required us to plot a typical x-y graph, the text file looked something like this: x y x y x y x y x y x y x yI think there's a tool on linux called gplot?Gnuplot. It's rather simple (but not terribly easy) to use and has a very good help system. Just go to a terminal, type 'gnuplot', then 'help plotting' and 'help plot' to get started.
Jan 09 2007
This is exactly what I need to do, but how interactive(mouse zoom etc.) are these graphs? I need to decide whether I'll use D or Matlab for transforming/plotting my data. There are some really nice toolboxes for Matlab for generating graphs.I mentioned it because I remember using it for an assignment in some course. Our usage of it required us to plot a typical x-y graph, the text file looked something like this: x y x y x y x y x y x y x y
Jan 10 2007