在 gnuplot 中设置 x ascis

在 gnuplot 中设置 x ascis

我想用只有一列的文件编写 gnuplot 图。我的文件缺少 X。我的 X 基于一行数字,该数字从 2.5 到 30,步长为 0.1。gnuplot 中是否有执行此操作的命令?

答案1

据我所知,您不能直接在 gnuplot 中执行此操作,但您可以在运行 gnuplot 之前在终端中创建正确的文件(我假设您的数据文件名为file.dat):

seq 2.5 0.1 30 > xaxis.dat
paste xaxis.dat file.dat > newfile.dat

现在您可以newfile.dat在 gnuplot 中绘图了。

相关内容