Gnuplot cblabel没有出现

时间:2016-11-26 22:26:01

标签: gnuplot

我试图绘制以表格形式表示的两个变量的函数。我想标记我的颜色条,同时将其表示为热图。无论我重新调整多少,没有运气,我甚至看不到彩条标签出现。这是我的gnuplot脚本:

set title "Flux in core vs radius and height"
set view map
set cblabel "Neutron flux (cm^-2 s^-1)"
set xlabel "Radius (cm)"
set ylabel "Axial distance from center (cm)"
splot "flux.out" using 1:2:3 with image

结果看起来像这样,缺少彩条标签:

Plot without colorbar

1 个答案:

答案 0 :(得分:2)

cblabel打印在图片外部。您可以手动调整边距以为标签留出一些空间:

set lmargin at screen 0.1
set rmargin at screen 0.7

我使用at screen,因为其他图片会被再次裁剪。我还设置lmargin,因为在我的测试中,ylabel不适合页面。

使用Gnuplot 4.6进行测试。