Gnuplot脚本将“嵌入”格式与索引块组合在一起

时间:2011-03-21 16:02:54

标签: gnuplot

基本上,我想要合并http://t16web.lanl.gov/Kawano/gnuplot/datafile2-e.html#7.4http://t16web.lanl.gov/Kawano/gnuplot/datafile2-e.html#7.2。我正在尝试使用嵌入式纯文本数据点的gnuplot脚本在一个绘图命令中使用三种不同的颜色进行绘图,如下所示:

plot \
    "-" index 0 title "waveform" with lines, \
    "-" index 1 title "-trig"    with lines, \
    "-" index 2 title "+trig"    with lines
    1418    -0.04
    1419    -0.04
    1420    +5.28
    1421    +5.20
    1422    +5.16

    1418    3.66
    1422    3.66

    1418    3.86
    1422    3.86
end

但是,它只显示一种颜色的三个块,并在第二个和第三个索引命令上抛出错误。

1 个答案:

答案 0 :(得分:1)

没关系,我终于猜到了它的运作:

plot \
    "-" title ""      with lines, \
    "-" title "-trig" with lines, \
    "-" title "+trig" with lines
    1418    -0.04
    1419    -0.04
    1420    +5.28
    1421    +5.20
    1422    +5.16
end
    1418    3.66
    1422    3.66
end
    1418    3.86
    1422    3.86
end