Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
81 views

I'm making a Java app, that uses gnuplot. I've already successfuly displayed a graph in JPanel (using JPlot). But I need to get somehow access to commands that JavaPlot gives to gnuplot, or rather I ...
Martafix's user avatar
1 vote
0 answers
124 views

I'm new to Javaplot and I'm using it to generate several graphs of some processes to determine their efficiency. I've made my way around to be able to create several graphs in a page but they are ...
lykowar's user avatar
  • 13
2 votes
1 answer
2k views

I have been trying to plot scatter data with points where the size and colors depend on the input. I have check some others examples and I get to write this, but then I get that error message plot '-...
jfzr's user avatar
  • 405
1 vote
1 answer
465 views

I have a file with strings 1.429520882432E12 3432.0 1.429520882914E12 1573.0 ... first col is epoch timestamp(13 digit), how could I get time from it? I couldnt find format for 'double' digits I ...
Vadim's user avatar
  • 47
1 vote
1 answer
504 views

I tried the code for saving png files found here and it works. But I want to save a vector image, so I changed the terminal to: PostscriptTerminal and SVGTerminal. For the SVGTerminal the output in ...
Ravby's user avatar
  • 53
1 vote
2 answers
303 views

I'm having trouble passing GNUplot parameters through JavaPlot. I've been able to use JavaPlot for several different graphs, but I can't seem to get JavaPlot to activate the "polar" setting in ...
user4815162342's user avatar
0 votes
1 answer
255 views

I was trying to monitor the change of some parameters using JavaPlot. Is there a way to simply update the plot of data in the original plot?
Pierre Lorentz's user avatar
1 vote
1 answer
149 views

I'm using JavaPlot in windows 7 to plot multiple datasets in Java, and I've found that the plot() method contains a section that waits for the GNUPlot process to end. What this means in practice is ...
rorold's user avatar
  • 326
0 votes
1 answer
262 views

I'm trying to see my plot using Javaplot, but the window is not even shown and disappeared immediately. Here is my code: JavaPlot p = new JavaPlot("C:/Program Files (x86)/gnuplot/bin/pgnuplot.exe"); ...
zoma.saf's user avatar
  • 568
5 votes
2 answers
2k views

I have created the gnuplot, but the problem is that it disappears immediately. I tried different solutions proposed in other threads, but none of them worked. Solution 1: comment the line bf.append("...
Klausos Klausos's user avatar
0 votes
1 answer
255 views

If you don't know JavaPlot, it's a Java library which 'connects' Java with the popular gnuplot providing a set of classes. When it runs, it searches for the gnuplot binary in your system. Anyway, some ...
whatyouhide's user avatar
  • 16.9k
1 vote
2 answers
145 views

This is part of larger graphing program (JavaPlot specifically). In a nut shell, I would try to graph something; the graph would appear at out.write(comms); but then close once it hit out.close() ...
Daniel's user avatar
  • 2,535
0 votes
1 answer
2k views

I'm trying to do what the title says. Obviously gnuplot is capable of doing this but I want to use JavaPlot to call it. The Graph3D class in JavaPlot makes me think its possible but as I have found no ...
Daniel's user avatar
  • 2,535
1 vote
2 answers
3k views

I am having a few issues setting up javaplot into my application. I have downloaded the source files from: http://sourceforge.net/projects/gnujavaplot/files/latest/download and i have dragged the ....
Tyler Durden's user avatar
1 vote
2 answers
3k views

I am using JavaPlot. In gnuplot, I would type plot "data" with lines In JavaPlot, I have JavaPlot p = new JavaPlot(); p.addPlot(data); p.plot(); Any idea how to get the lines?
rhombidodecahedron's user avatar