我正在尝试使用gnuplot使用以下代码创建EPS文件:
set terminal postscript eps enhanced
set output 'file.eps'
plot 'mydata.dat' using 1:2
replot
quit
但无济于事,EPS文件中没有任何情节。我不知道我错过了什么,我得到了ghostscript,ghostscript-fonts和psutils。 EPS文件只是空白文件。我搜索过网络,但没有任何作品。
如何生成包含情节的EPS文件?
规格: Fedora 21 x64_86 gnuplot-4.6补丁5 鬼魂9.15
答案 0 :(得分:1)
“conf”:
set terminal postscript eps enhanced
set output 'file.eps'
plot 'mydata.dat' using 1:2 with linespoints
replot
quit
你需要一些mydata.dat文件的数据,例如http://lowrank.net/gnuplot/datafile2-e.html,ref。 https://www.google.com/webhp?hl=all&gws_rd=ssl#hl=en&q=gnuplot+plot+file
# X Y1 Y2
1.0 0.0 0.1
2.0 0.0 0.1
3.0 0.0 0.1
4.0 0.1 0.2
5.0 0.6 0.4
6.0 1.0 0.9
7.0 1.2 1.7
8.0 1.3 2.4
$ gnuplot conf
:好的,一个不错的情节,file.eps。
答案 1 :(得分:-1)
好的,我现在已经解决了,似乎ghostscript和infinality之间存在冲突所以我卸载了它
sudo yum remove *infinality*
和Viola!事情现在有效! :)