Gnuplot 如何使 x 轴为 1,3,5 ...而不是 1,2,3,4,

发布于 2024-12-06 03:11:32 字数 418 浏览 1 评论 0原文

我有一个文本文件,其中包含从 C 程序生成的单列数据,我正在通过 gnuplot 进行绘制。如果不从 C 程序为索引生成附加列,即不更改数据,例如:

“stat”.txt”,

23423
43543
45562
32423

我可以

1 23423
3 43543
5 45562
7 32423

使 gnuplot 将 x 轴编号从 1,2,3,4,...到 1,3,5,7...

当我 plot "stat.txt" 时,每个行条目对应的 x 值默认为 1,2,3,4...

目前,我确实为索引添加了一个附加列并使用了命令 plot “stat.txt”使用 1:2 但我很想知道。

I have a text file with a single column of data generated from a C program that I am plotting via gnuplot. Without generating an additional column for the index from the C program, i.e without changing the data from, say:

"stat".txt"

23423
43543
45562
32423

to

1 23423
3 43543
5 45562
7 32423

can I make gnuplot change the x axis numbering from 1,2,3,4,... to 1,3,5,7...

When I plot "stat.txt" the corresponding x value to each row entry is by default 1,2,3,4...

Presently, I did add an additional column for the index and used the command plot "stat.txt" using 1:2 but I am curious to know.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春如此纠结 2024-12-13 03:11:32

gnuplot 中的第 0 列是记录号。

plot "stat.txt" using (2*$0-1):1

将为您提供绘图上的 x 值 1,3,5。

Column 0 in gnuplot is the record number.

plot "stat.txt" using (2*$0-1):1

will give you 1,3,5 for the x values on the plot.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文