|
From: Thomas S. <t.s...@fz...> - 2008-04-08 15:35:08
|
> I have a number of 7 digits , for example 1828446 as my > y-axis and another no. as my x-axis. > When I try to plot them, gnuplot automatically converts > this y-axis number as 1.85e+006. > Can anyone tell me how to keep this number in its original > form i.e. 1828446 ? set format x "%7.0f" set xtics 1 set format y "%7.0f" set ytics 1 see 'help set format' and 'help set tics' -- View this message in context: http://www.nabble.com/converting-exponential-number-into-simple-form-tp16559728p16560851.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |