2013-02-17 69 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的風格:’部分可以被默認設置。

相關問題