GNUPlot disappears immediately after its creation

徘徊边缘 提交于 2019-12-18 06:56:28

问题


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("quit").append(NL); in the file GNUPlotParameters.java. Solution 2: put the line gp.setPersist(true); before gp.plot();.

DataSetPlot plotdata = new DataSetPlot(Xvals);
plotdata.setTitle("");
GNUPlot gp = new GNUPlot("C:\\Program Files (x86)\\gnuplot\\bin\\pgnuplot.exe");
gp.addPlot(plotdata);
gp.plot();
gp.setPersist(true);

So, how to solve this problem?

P.S. I'm running this code on Windows 7.


回答1:


Unfortunately this seems to be a bug in gnuplot under windows. See this bug report.

If you want this type of functionality, you have two options:

  1. use CygWin version of gnuplot
  2. save the result to a file, or use the JPlot swing component.

EDIT: There is a new version of JavaPlot which should fix this issue.




回答2:


Look into the -persist option to pass to gnuplot, you could probably change the third line in your code to

GNUPlot gp = new GNUPlot("C:\\Program Files (x86)\\gnuplot\\bin\\pgnuplot.exe -persist");

or

GNUPlot gp = new GNUPlot("C:\\Program Files (x86)\\gnuplot\\bin\\pgnuplot.exe /noend");

Here is my source.



来源:https://stackoverflow.com/questions/16045540/gnuplot-disappears-immediately-after-its-creation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!