如何在 Julia 中智能地将一个参数应用于 Array{Function, 1} 元素?

How to apply one argument to Array{Function, 1} element-wise smartly in Julia?

我知道 Julia 可以通过 f.(x) 将逐元素参数应用于函数 在 v0.6

x = [1, 2, 3]
f = x->3x
@assert f.(x) = [3, 6, 9]

现在,我将 f 定义为 Array{Function, 1}。

f1(x) = 3x
f2(x) = 4x
f = [f1,  f2]
x = 2
@assert isa(f,  Array{Function,1}) == true
# f.(x) is unavailable

我想像上面的语法一样将参数应用于逐元素函数,而不是使用 map[_f(x) for _f in f]

有人熟悉这个问题吗?

您可以广播管道运算符(|>),例如

x .|> f

你必须注意如何定义x和f,在某些情况下你会失败。您在最后一个 f 上应用的第一个 x 将失败。

julia> 5 .|> [x->2x, x->7x]
2-element Array{Int64,1}:
 10
 35

julia> [2, 5] .|> [x->2x, x->7x]
2-element Array{Int64,1}:
  4
 35

julia> [2 5] .|> [x->2x, x->7x]
2-element Array{Int64,2}:
  4  10
 14  35

julia> [2 5] .|> [x->2x x->7x]
1×2 Array{Int64,2}:
4  35

julia> [2, 5] .|> [x->2x x->7x]
2×2 Array{Int64,2}:
 4  14
10  35

julia> [2 3 5] .|> [x->2x x->7x]
ERROR: DimensionMismatch("arrays could not be broadcast to a common")

julia> [2, 3, 5] .|> [x->2x, x->7x]
ERROR: DimensionMismatch("arrays could not be broadcast to a common")

julia> x = [1, 2, 3]; f = [x->2x, x->3x]; x .|> f
ERROR: DimensionMismatch("arrays could not be broadcast to a common")

还有一种可能:

((f, x)->f(x)).([f1, f2], x)