Gnuplot 如何使 x 轴为 1,3,5 ...而不是 1,2,3,4,
我有一个文本文件,其中包含从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
gnuplot 中的第 0 列是记录号。
将为您提供绘图上的 x 值 1,3,5。
Column 0 in gnuplot is the record number.
will give you 1,3,5 for the x values on the plot.