我想在gnuplot的一個splot內繪製虛線下面的代碼4.6 PATCHLEVEL 4:gnuplot的:在splot虛線的變化密度
set terminal "pdfcairo" enhanced dashed size 15,10
set pm3d map
set output "test.pdf"
splot 'map.dat' using 1:($2/1000):3 notitle, \
'line1.dat' using 1:($2/1000):1 notitle with lines ls 2, \
'line2.dat' using 1:($2/1000):1 notitle with lines ls 2
unset output
熱圖的作品也是如此line1.dat 。但是,第二行看起來很穩固。不同之處在於line1.dat有70個條目,line2.dat有900個。第二行有兩個點之間的跳轉,並且在那裏是虛線。
有人知道我如何改變網點密度,以便整條線點綴。更改原始數據文件不是一個選項。
感謝你的幫助,
不一
編輯:
一個解決辦法,我發現是
splot 'line2.dat' every ...
但可以在數據跳得到unconvenient。
謝謝你的幫助。對於數據跳轉,我使用了三個「每個」(第一部分,第一部分正確跳轉,第二部分跳轉)。 – noes