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:
public static void main(String... args) {
JavaPlot p = new JavaPlot("F:/Programs/GnuPlot/bin/pgnuplot.exe");
p.addPlot("sin(x)");
p.setPersist(true);
p.plot();
}
Moreover this line
p.setPersist(true);
does not change anything, I can use true or false and there is the same result as above.
I'm using gnuplot 4.6 and there is no file called "GnuPlotParameters" like in earlier solution. Is there anyone who used javaplot under windows 7 and gnuplot 4.6, and had the same problem? I created new question because the old one was closed.
Best Janusz