如何在 gnuplot 中绘图时向文件中的数据添加偏移量

发布于 2024-11-03 05:34:03 字数 121 浏览 0 评论 0原文

我想向要使用 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 技术交流群。

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

发布评论

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

评论(2

灵芸 2024-11-10 05:34:03

尝试这样的操作:

plot "Data.dat" u ($1):($2 + 0.001) w l

$1$2 指定要绘制的列。只需向列添加一个常量(如 0.001),甚至添加两列,如下所示:$1 + $2

我希望这能回答您的问题
切里奥·沃尔坦

Try something like this:

plot "Data.dat" u ($1):($2 + 0.001) w l

The $1 and $2 specify the column you want to plot. Simply add a constant like 0.001 to the column or even add two columns like so: $1 + $2.

I hope that answers your quastion
Cherio Woltan

無處可尋 2024-11-10 05:34:03

我认为最好让 gnuplot 计算偏移量,而不是猜测正确的常数......

off(x) = sin(x) + offset
fit off(x) "data" using 1:2 via offset
plot off(x)

I think it is better to let gnuplot compute offset, instead of guessing the right constant...

off(x) = sin(x) + offset
fit off(x) "data" using 1:2 via offset
plot off(x)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文