绘制相对于固定数据元素的绘图

时间:2009-11-10 15:29:28

标签: gnuplot

我有以下数据文件:

x  y
 1 50.583
 2 27.842
 3 19.156                                                              
 4 15.491
 6  9.779
 8  8.584                                                              
12  6.436                                                              
16  4.595
24  3.605
32  2.447

我想绘制点(x i ,y i / y 1 )。我如何使用gnuplot做到这一点?

1 个答案:

答案 0 :(得分:0)

我想我找到了一个使用shell脚本的解决方案:

#!/bin/sh
base=`head -n1 input.txt | cut -f2 -d' '`
gnuplot << EOF
plot input.txt using 1:(\$2 / $base)
EOF