2

我了解 Julia 可以在 v0.6 中通过 f.(x) 将元素参数应用于函数

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]

有人可以熟悉这个问题吗?

4

3 回答 3

10

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

x .|> f
于 2017-08-14T06:12:57.903 回答
2

你必须注意如何定义 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")
于 2017-08-14T12:48:09.460 回答
0

这是另一种可能性:

((f, x)->f(x)).([f1, f2], x)
于 2017-08-14T19:18:40.917 回答