如何在 gnuplot 中绘图时向文件中的数据添加偏移量
我想向要使用 gnuplot 绘制的文件中的数据添加偏移量。假设我想在绘制文件之前向文件中的所有数据值添加 0.001 的偏移量。我怎样才能在 gnuplot 中做到这一点,而不必使用偏移量重写数据文件。
谢谢。
I want to add an offset to the data from a file which i want to plot using gnuplot. Suppose i want to add an offset of 0.001 to all the data values from file before i plot them . How can i do it in gnuplot without having to rewrite the data file with the offsets.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样的操作:
$1
和$2
指定要绘制的列。只需向列添加一个常量(如0.001
),甚至添加两列,如下所示:$1 + $2
。我希望这能回答您的问题
切里奥·沃尔坦
Try something like this:
The
$1
and$2
specify the column you want to plot. Simply add a constant like0.001
to the column or even add two columns like so:$1 + $2
.I hope that answers your quastion
Cherio Woltan
我认为最好让 gnuplot 计算偏移量,而不是猜测正确的常数......
I think it is better to let gnuplot compute offset, instead of guessing the right constant...