我正在尝试从名为' sample'的网格化数据文件中绘制轮廓。这个脚本对我来说很好用:
set xrange[1:1e2]; set yrange[1:1e2]; set log;
set view map; unset surface
set style textbox opaque margins 0.5, 0.5 noborder
set contour base
set cntrlabel format '%5.3g' font ',7'
set cntrparam levels discrete 1e40,1e42,1e44
splot 'sample' u ($1*1e27):($2*1e18):3 wl
它绘制了带有轮廓线的2D图。一切都很好。 如果我只敢用
继续绘制线'' u ($1*1e27):($2*1e18):3 with labels boxed notitle
要在轮廓线上添加标签,生成空白图需要大约15分钟。在sourceforge上使用gnuplot示例,它可以工作。 你有没有经历过类似的事情?
非常感谢提前