2014-09-18 134 views
2

等距列我有一個長數據文件(450列),其是這樣的:繪製在gnuplot的

x y z x y z x y z... 
1 2 4 2 
4 3 5 5 
7 4 6 8 
10 5 7 11 

三列相關,我想在一個圖1對2繪製,4比5, 7,8分,...

而第二圖1比3,4比6,7比9中,...

y和z變量計算依賴於X。

我嘗試,例如,

plot for [col=2:10:3] "file.txt" using 1:col with lines 

這繪製在y值,而僅VS x的第一列。 是否有可能在使用命令中寫入plot vs every nnth列?

感謝您的幫助!

回答

1

您可以使用

plot for [c=1:10:3] "file.txt" using c:(column(c+1)) 

和第二情節

plot for [c=1:10:3] "file.txt" using c:(column(c+2))