Friday, 15 February 2013

How to set a line style as default for multiple plots in Gnuplot? -



How to set a line style as default for multiple plots in Gnuplot? -

i create plot using gnuplot. line width should 3 in plots. if 1 plot done by:

set style line 1 linewidth 3

is there way how globally default?

you can specify

set terminal <terminal> linewidth 3

this alter default linewidth lines in plot, including plot borders.

if that's not want, can specify lines in loop (gnuplot 4.6+), n number of lines plotting:

do [i=1:n] { set style line linewidth 3 }

gnuplot

No comments:

Post a Comment