|
From: S <ste...@gm...> - 2008-04-09 19:53:53
|
Hello, I ran over the following problem: I have input Data which is stored with "," as decimalsign. For the X11-terminal, plotting with set decimalsign locale "de_DE@euro" works, however, if I try to plot into a postscript file, it doesn't. So far I use sed to replace the "," by "." , I would like to solve this from within gnuplot. Any idea, what is going wrong, here? Thanks, Stephan My Minimal script shows the plot of file.txt first in x11 then in postcript, which reveals an empty ps-file. ################script########### set decimalsign "de_DE@euro" set term x11 plot "file.txt" pause -1 set term postscript eps set out "file.ps" replot ############data file ########## file.txt: 1 0,1 2 0,2 3 0,3 4 0,4 5 0,5 |