2015-06-29 92 views
2

我爲每個圖形自動生成未知數量的輸入文件的.plt文件。我的問題是,當gnuplot爲點(填充正方形)選擇實體形狀時,實體點會壓倒所有其他類型的點。在這張圖片中gnuplot point types 有沒有辦法讓我說不要使用5,7,11,13等?或者也許是這個(使用1,2,3,4,6,8等)的逆?有沒有辦法阻止gnuplot使用實體?

回答

1

您可以使用set linetype選擇其中使用點類型:

set linetype 1 pt 1 
set linetype 2 pt 2 
set linetype 3 pt 3 
set linetype 4 pt 4 
set linetype 5 pt 6 
set linetype 6 pt 8 
set linetype 7 pt 10 
set linetype 8 pt 12 

set samples 11 
plot for [i=1:8] i*x with points notitle 

enter image description here

+0

我明白了!我不知道你可以重寫這樣的線型。謝謝! – f41lurizer

相關問題