Gnuplot 绘制多分散数据文件大小

Gnuplot 绘制多分散数据文件大小

我有一个 lammps 多分散数据文件格式如下:

## Atom-ID, x, y, eps, sigma

我无法在 gnuplot 中将其可视化。有人能帮我提供 gnuplot 命令的详细信息吗?

答案1

本回答假设您已正确安装 gnuplot。如果是这样,那么这个问题可能不合题意。

要使用第一列作为 x 轴、第二列作为 y 轴绘制数据文件,可以使用

gnuplot > plot “file.dat” using 1:2

通常,以 m 列作为 x 轴,以 n 列作为 y 轴,使用

gnuplot > plot "file.dat" using m:n

您可以找到快速指南这里

相关内容