在gnuplot中旋转绘图

时间:2015-09-04 16:29:35

标签: gnuplot

1 - 如何旋转我的图,所以y将是新的x轴,反之亦然?

2-将y轴的最大值从60更改为100。 enter image description here

该剧情由终端中的该脚本创建:

set palette grey
plot 'color_map.dat' matrix with image

1 个答案:

答案 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了解详情。