以编程方式修改 gnuplot 脚本内的变量

发布于 2024-12-11 18:21:11 字数 451 浏览 2 评论 0原文

我有一个由我的程序生成的值的配对 t 文件,教授为我们提供了一个基本的 gnuplot 脚本供我们使用。然而,标题、输出文件名和输入数据文件都是硬编码在脚本中的。

有没有办法修改绘图文件中的变量?

例如,当前标题是通过

set title "Voting"

完成的,绘图命令是通过

plot 'data-confidence' using 14:3:9:12 notitle with errorbars, \
'data-confidence' using 14:3 notitle with points 2

Is it possible to do things like

gnuplotpairedt.g votevoting.data 执行的并在 .data 文件上执行脚本?

I have a paired t file of values generated from my program, and the professor has given us a basic gnuplot script to work from. However, the title, output filename and input data file are all hard-coded in the script.

Is there any way to modify the variables inside the plot file?

for example, the current title is done via

set title "Voting"

and the plot command is executed via

plot 'data-confidence' using 14:3:9:12 notitle with errorbars, \
'data-confidence' using 14:3 notitle with points 2

Is it possible to do something like

gnuplot pairedt.g voting voting.data and have the script execute on the .data file?

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

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

发布评论

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

评论(2

你的心境我的脸 2024-12-18 18:21:11

将 gnuplot 脚本转换为 shell 脚本,通过变量替换填充所需的名称。一个很好的方法是使用此处文档

一个最小的示例:

#!/bin/sh
    gnuplot << EOF
    set terminal postscript eps
    set output "$1.eps"
    plot "$1.dat"
EOF

这使用脚本的第一个参数来确定输出文件名和数据文件的名称。

Convert the gnuplot script into a shell script that fills in the needed names by variable substitution. A nice way to do this is by using a here document.

A minimal example:

#!/bin/sh
    gnuplot << EOF
    set terminal postscript eps
    set output "$1.eps"
    plot "$1.dat"
EOF

This uses the first argument to the script to determine both the output file name and the name of the data file.

雨的味道风的声音 2024-12-18 18:21:11

我有点不清楚你到底想要什么,但我认为你有两种可能的方法来解决这个“问题”:

  1. 编辑 gnuplot 脚本,以便支持你的数据文件的外观。或者更好的是,编写您自己的脚本来绘制数据。

  2. 编辑生成输出文件的程序,以便

    • 输出文件的名称是data-confidence
    • 数据文件包含 gnuplot 脚本所需的列(这些列通过 14:3:9:12 引用(请参阅 此处查看文档))

It is a little unclear to me what you are exactly after but I think there are two possible ways for you to solve this "issue":

  1. Edit the gnuplot script so that is supports the way your data file looks. Or even better, write your own script that plots your data.

  2. Edit your program that generates the output file so that

    • the name of the output file is data-confidence,
    • the data file has the columns the gnuplot script needs (the columns are referenced with 14:3:9:12 (see here for the documentation))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文