2013-02-17 36 views

回答

7

您可以指定

set terminal <terminal> linewidth 3 

这将改变默认线宽在情节的所有线路,包括地块边界。

如果这不是你想要的,你可以指定一个循环(gnuplot的4.6+),其中n是行你正在策划的数量所有行:

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

你可以用gnuplot 4.4'为[i = 1:n]样式线i linewidth 3设置同样的东西' – mgilson 2013-02-17 18:53:24

+6

也不是说有'set termoption lw 3'为当前终端设置线宽为3 。 – mgilson 2013-02-17 18:54:19

0

还有其他的“行风格”。为所有行一次没有索引,例如设定为linespoints

set style data linespoints 
plot '-', '-' 
    1, 1 
    2, 2 
    3, 3 
    e 
    1, 1 
    2, 4 
    3, 9 
    e 

深入了解在‘手动http://www.gnuplot.info/docs_5.0/gnuplot.pdf其他事情的TOC的风格:’部分可以被默认设置。

相关问题