Gnuplot 脚本结合了“嵌入”和带索引块的格式

发布于 2024-10-24 07:42:20 字数 752 浏览 0 评论 0原文

基本上,我想结合 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

但是,它仅以一种颜色显示三个块,并在第二个和第三个索引上引发错误命令。

Basically, I want to combine http://t16web.lanl.gov/Kawano/gnuplot/datafile2-e.html#7.4 and http://t16web.lanl.gov/Kawano/gnuplot/datafile2-e.html#7.2. I'm trying to get a gnuplot script with embedded plaintext data points to plot using three different colours all in one plot command, like so:

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

However, it just displays the three blocks in one colour and throws an error on the second and third index commands.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟若柳尘 2024-10-31 07:42:20

没关系,我终于猜到了它的工作原理:

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

Never mind, I finally guessed it into working:

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文