2017-06-30 50 views
0

我想在整個圖上只有一個特定形狀的點。爲了這個目標,我使用PI屬性:gnuplot。如何在圖表的開頭不打印點?

plot 'a.txt' every 1000 using 1:3 with linespoints pi 30 title "A",\ 
'b.txt' every 1000 using 1:3 with lines points pi 30 title "B",\ 
'c.txt' every 1000 using 1:3 with linespoints pi 30 title "C" 

的問題是,gnuplot的打印這些圖的第一個點,然後打印出另外一個在圖中間。我不想有第一點(實際上,A,B和C從(0,0)開始,這使得圖形看起來很糟糕)。

回答

0

嘗試在every條款與線繪製,然後用點和設置的第一點:

plot 'a.txt' every 1000 using 1:3 with lines title "A",\ 
'a.txt' every 1000::2000 using 1:3 with points pi 30 notitle,\ 
..... 
+0

謝謝。其實,我已經找到了另一個解決方案。只要把set yrange [0.1:]這樣的東西。 – chessman