如何在 gnuplot 中使用带有“with”表示法的动态变量名称?

Posted

技术标签:

【中文标题】如何在 gnuplot 中使用带有“with”表示法的动态变量名称?【英文标题】:How can I use dynamic variable names in gnuplot with "with" notation? 【发布时间】:2021-08-16 18:08:06 【问题描述】:

我想在带有for循环的plot命令中使用变量或数组,如下所示

style[1]= "lines lt 4 lw 2"
style[2] = "points lt 3 pt 5 ps 2"
....

title[1]= "first title"
title[2]= "second title "
...

style="'lines lt 4 lw 2' 'points lt 3 pt 5 ps 2'"
title="'first title' 'second title'"

绘图命令

plot for [i=1:1000] 'data.txt' u 1:2 title title[i] with style[i]
plot for [i=1:1000] 'data.txt' u 1:2 title word(title,i) with word(style,i)

我在title部分成功了,但在with部分没有成功。我意识到问题是由引号引起的。

i=1
plot 'data.txt' u 1:2 title "first title" with "lines lt 4 lw 2"

当我使用数组和 word 属性时,由于引用错误而出现错误。我尝试了 sprintf 但仍然没有成功。

sprintf("with %s", style'.i.')

我希望我能正确解释。知道我如何解决这个问题吗?或者我怎样才能删除引号。非常感谢。

【问题讨论】:

欢迎来到 ***!我想您不能简单地更改 plot for 循环中的绘图样式,但您可以更改线条样式。也许这个***.com/a/63699595/7295599 或这个***.com/a/61692635/7295599 对你有帮助。 谢谢@theozh。我会仔细检查您发布的链接。感谢您的回复 【参考方案1】:

如果您要从中选择的样式仅包含线和/或点,那么您可以通过定义相应的linestyle 然后按数字选择它来做到这一点。

set style line 1 lt 4 lw 2 pt 0               # lines only, no points
set style line 2 lt 3 lw 0.001 pt 5 ps 2      # points only, no lines
array Title[2] = ["style 1", "style 2"]

plot for [i=1:2] sin(x/i) with linespoints ls i title Title[i]

注意:通过将 lw 设置为 0 来抑制线条可能不起作用,因为许多终端将其解释为“最细的线条”而不是“没有线条”。因此,我们将其设置为非常薄的东西,希望不会被看到。

如果您要从中选择的样式包括线+点以外的其他内容,那么不,我认为不可能使用此技巧。

【讨论】:

感谢您的回答@Ethan。可能这种方法对我有用。我了解到我们不能轻易地在 plot 命令下返回一个值。【参考方案2】:

您可以尝试将完整的绘图命令构建为字符串,然后eval它:

max_i = 2
array title[max_i]
array style[max_i]

style[1]= "lines lt 4 lw 2"
style[2] = "points lt 3 pt 5 ps 2"

title[1]= "first title"
title[2]= "second title"


cmd="plot NaN notitle"  # dummy for starting iteration
do for [i=1:max_i] 
   # append the explicit plot command
   cmd = sprintf("%s, sin(x*%d) title \"%s\" with %s", cmd, i, title[i], style[i])

print cmd  # just for checking the final plot command

eval cmd   # run plot command

1000 行可能会很慢(甚至根本不起作用)。但无论如何,我会有点害怕在一个图表中包含 1000 行和标题。

【讨论】:

谢谢@maij。是的,这几乎正是我想要的。我猜这个解决方案与 sprintfeval 有关。但我一直无法解决它。谢谢你的回答。

以上是关于如何在 gnuplot 中使用带有“with”表示法的动态变量名称?的主要内容,如果未能解决你的问题,请参考以下文章

找不到带有 CATALINA 的 qt 或 x11 终端 gnuplot

fdtd simulation, plotting with gnuplot, writting in perl

如何在 C++ 中使用 GNUplot 绘制图形

如何关闭Gnu进程?

如何沿着文本段的边界框画一条线?

Gnuplot - 如何更改键背景的不透明度?