From: Thomas S. <t.s...@fz...> - 2008-07-16 16:13:24
|
that's the normal behavior of the c-function 'printf': if you compile this little program: #include <stdio.h> main () { printf("%g\n",1.000005); printf("%f\n",1.000005); } and let it run, you'll get: 1.00001 1.000005 so adding set format y "%f" to your gnuplot-commands will solve your problem. for more information see the manual or help format at the gnuplot prompt. -- View this message in context: http://www.nabble.com/bug-tp18489230p18490226.html Sent from the Gnuplot - Bugs mailing list archive at Nabble.com. |