gpt4 book ai didi

file - gnuplot : how to save datafile values into a variable (with condition)?

转载 作者:行者123 更新时间:2023-12-05 07:59:36 24 4
gpt4 key购买 nike

我使用 Gnuplot,我想将数据文件的值保存到有条件的变量中。例如,我有以下数据文件“example.dat”:

columnl   column2
5 7.0
3 4.0
7 6.0

在我的 gnuplot 脚本中,我希望能够编写:

variable = " in the file 'example.dat' ($1)==5 ? $2 : 1/0 "

这与这里相同:

variable = 7.0

当然这个值取决于数据文件。

那有可能吗?

如果不是,是否可以无条件?

最佳答案

我是这样解决问题的:

A=""
plot file u (A=A.sprintf(' %g',$2), $1):2

第 2 列中的所有条目都将写入 A,然后您可以通过以下方式访问:

word(A,i)

其中 i 是原始数据的数量(从 1 开始)words(A) 给你总长度。

关于file - gnuplot : how to save datafile values into a variable (with condition)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21309122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com