作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 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/
我是一名优秀的程序员,十分优秀!