Tagged Questions
0
votes
1answer
74 views
GNUPlot disappears immediately after its creation
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 ...
0
votes
0answers
87 views
Error while parsing 'plot' arguments in JavaPlot
I'm having troubles with setting up JavaPlot on my machine.
This is the test code that I'm using:
import com.panayotis.gnuplot.JavaPlot;
public class test {
public static void main(String[] ...
1
vote
0answers
195 views
Javaplot under windows 7 and gnuplot 4.6 - disappearing result
I want to return to the old thing:
JavaPlot and gnuplot
I'm using windows 7 and I have the same problem, it means that my graph disappear immediately after the launching my simple test program:
...
0
votes
1answer
112 views
Java - JavaPlot under Mac OS X 10.8 - Could I somehow avoid installing gnuplot?
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 ...
0
votes
2answers
261 views
Spectogram using JavaPlot not working
I'm trying to display a spectogram using JavaPlot with this piece of code:
PlotStyle style = new PlotStyle();
style.setStyle(Style.IMAGE);
DataSetPlot data = new DataSetPlot(points);
...
1
vote
1answer
208 views
Scatter Plot will not change color
I'm trying to change the color of the points on my 3D Scatter Plot. The points change to black, not the color I want and the point on the key changes to the correct color. Does anyone know why this ...
0
votes
1answer
479 views
Using JavaPlot/Gnuplot for 3D graphing
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 ...
0
votes
1answer
460 views
How do I run Gnuplot Scripts from a Java environment?
All of the information I'm finding about using JavaPlot is about how to create plots and run them from a Java code-level. This is fine, but I already have some script files used that do what I want ...
0
votes
2answers
698 views
Incorporating gnu javaplot in application
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 ...
1
vote
1answer
829 views
JavaPlot (GNUPlot) set legend labels and axis name
The current code i use is:
JavaPlot plotter = new JavaPlot();
plotter.setTitle("Title");
plotter.addPlot(data1);
plotter.addPlot(data1);
plotter.plot();
But I want to be able to set the labels ...
1
vote
2answers
830 views
“With lines” in JavaPlot?
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?