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");
String s=readFile();
p.addPlot(s);
p.plot();
p.set("term", "x11 persist");
p.setPersist(true);
This code is running successfully when using gnuplot 4.6, but after moving to gnuplot 4.7 (becuase I need the hypertext new feature) it doesn't work.
Any suggestions? Thank you