1 - 如何旋转我的图,所以y将是新的x轴,反之亦然?
该剧情由终端中的该脚本创建:
set palette grey
plot 'color_map.dat' matrix with image
答案 0 :(得分:1)
您可以使用using
修饰符交换x轴和y轴。 (就像普通图一样,除了对于矩阵数据,第1列和第2列不在您的数据文件中,但是被推断出来。)
plot 'color_map.dat' matrix using 2:1:3 with image
如果您实际上只想更改y(新x)轴上的最大值,则可以使用set xrange[:100]
。但听起来你可能真的想要扩展数据本身,在这种情况下你可以使用
plot 'color_map.dat' matrix using ($2/60.*100):1:3 with image
请尝试help plot matrix
了解详情。