最新的gnuplot 5.0.3的图像样式情节问题

时间:2016-05-01 14:48:57

标签: gnuplot

最近我将gnuplot升级到5.0.3,发现图像样式图生成了没有方形数据的奇怪输出。在以前的版本(5.0.2)中不会发生这种情况。这是最小的例子

set term png
set output "a.png"
plot "-" using 1:2:3 with image title ""
#data
1 1 2
1 2 3
1 3 1

2 1 1
2 2 2
2 3 3

3 1 8
3 2 6
3 3 4

4 1 8
4 2 6
4 3 4

输出图像为a.png

处理像这样的方形数据时

set term png
set output "b.png"
plot "-" using 1:2:3 with image title ""
#data
1 1 2
1 2 3
1 3 1

2 1 1
2 2 2
2 3 3

3 1 8
3 2 6
3 3 4

一切都很好b.png

这是一个错误吗?

2 个答案:

答案 0 :(得分:0)

这可能是排序问题。

尝试按第二列排序:

1 1 2
2 1 1
3 1 8
4 1 8


1 2 3
2 2 2
3 2 6
4 2 6

1 3 1
2 3 3
3 3 4
4 3 4

答案 1 :(得分:0)

我面临同样的问题。此刻,我切换了x和y轴。我使用"你2:1:3 w image"而不是使用" u 1:2:3 w image"