在gnuplot中制作一个关卡计划

问题描述 投票:2回答:1

我通常在Mathematica中制作我的等级方案(核物理梯形图)。我现在无法访问Mathematica,所以想要使用Gnuplot解决方法。

我的数据文件

1 -38.0820  2+
3 -38.0820

1 -36.43835 1+
3 -36.43835

1 -34.9315 3+
3 -34.9315

1 -31.3698 1+
3 -31.3698

1 -23.9041 0+
1 -23.9041

我上面的输入文件叫做'Li8'。第一列(1,3)中的数字是虚拟x变量,第2列中的数值是能量(带有四位小数的数字),然后第三列中的“2+”等等是级别 - 计划标签

plot gnuplot
1个回答
1
投票

在gnuplot中制作级别方案的代码可能是这样的:

set terminal postscript
set output "Lithium-ls.ps"
set xrange [-1:5]
set yrange [-40:-24]
set ylabel "Energy [MeV]" font "arial, 24" rotate by 90
unset xtics
unset key
plot 'Li8' using 1:2 with lines lw 4, '' using 1:2:3 with labels offset 1,1 font "arial, 20"

这产生了一个非常好的输出Li8 levels

© www.soinside.com 2019 - 2024. All rights reserved.