具有多个语句的 Gnuplot 函数

Gnuplot Function with Multiple Statements

问题

是否可以定义其中定义了多个语句的函数?

上下文

我想通过定义函数来自动化创建堆叠图所涉及的一些计算。特别是,我希望有像

这样的东西
mp_setup(bottom_margin, top_margin) = \
    set tmargin 0; \
    set bmargin 0; \
    mp_available_height = 1.0 - top_margin - bottom_margin; \
    mp_current_height = bottom_margin;
mp_plot(plot_height) = \
    mp_plot_size = plot_height * mp_available_height; \
    set origin 0,mp_current_height; \
    set size 1,mp_plot_size; \
    mp_current_height = mp_current_height + mp_plot_size;

预期用途为:

...
set multiplot
mp_setup(0.05, 0.05)

mp_plot(1.0/3.0)
plot ...

mp_plot(2.0/3.0)
plot ...

这应该会自动导致图表很好地堆叠,而无需我计算每个图表的原点和大小。

问题

上面定义函数的方法不起作用,因为函数定义的解析似乎在第一次出现;时结束;但是为了分隔每个语句,这些分号是必需的(否则,我们有 set tmargin 0 set bmargin 0...,这是无效的)。

Gnuplot 似乎也不支持任何分组语句的方式(比如 C/C++ 中的 {...});或者至少,我从未遇到过它。

可能的解决方案

我知道的存储多个函数并对其求值的唯一方法是使用宏:

mp_setup = "<as above>"
mp_plot = "<as above>"

但这里的问题是宏不允许传入参数,而是必须预先声明每个变量,如下所示:

...
set multiplot
top_margin = 0.05
bottom_margin = 0.05
@mp_setup

plot_height = 1.0/3.0
@mp_plot
plot ...

 plot_height = 2.0/3.0
@mp_plot
plot ...

这个解决方案虽然应该可行,但并不那么优雅。

没有其他方法吗?

不,无法定义此类函数。在 gnuplot 中,用户定义的函数不能包含 setunset 或其他命令。只允许使用 return 数值或字符串变量的表达式。这里,可以有多个表达式,用逗号隔开:

a = 0
f(x) = (a = a + 1, a + x)
print f(1)
print f(1)

除了您使用宏的解决方案 (@var),我更喜欢在函数内部构造字符串并调用 eval:

set_margin(s, v) = sprintf('set %smargin at screen %f;', s, v)
set_margins(l, r, b, t) = set_margin('l', l).set_margin('r', r).set_margin('b', b).set_margin('t', t)

eval(set_margins(0.1, 0.95, 0.15, 0.98))

对于多地块布局的具体情况,您还可以参见 Removing blank gap in gnuplot multiplot

你可以这样做

mp_setup(bottom_margin, top_margin)=(tmargin=0,bmargin=0,mp_available_height=1.0 -top_margin-bottom_margin,mp_current_height=bottom_margin)

测试: 打印 mp_setup(0.05,0.05) ==> 0.05

如您所述,函数中的分组语句尚不支持。