纯函数的输入列表

发布于 2024-10-30 18:34:31 字数 183 浏览 1 评论 0原文

纯函数的语法类似于 (1+#1+#2)&[a,b],它给出 1+a+b。现在我想将一些类似于 {a,b} 的函数的输出提供给上面的函数,即类似 (1+#1+#2)&{a ,b},但是使用正确的语法,因为这显然不起作用。我该怎么做呢?

The syntax for a pure function is something like (1+#1+#2)&[a,b], which gives 1+a+b. Now I want to supply the output from some function which looks like {a,b} to the function above, i.e., something like (1+#1+#2)&{a,b}, but with the correct syntax, as that obviously doesn't work. How do I go about doing this?

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

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

发布评论

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

评论(3

青朷 2024-11-06 18:34:31

最简单的方法是使用 Apply (@@):

In[4]:= (1 + #1 + #2) & @@ {a, b}

Out[4]= 1 + a + b

The easiest approach is to use Apply (@@):

In[4]:= (1 + #1 + #2) & @@ {a, b}

Out[4]= 1 + a + b
第几種人 2024-11-06 18:34:31

要提供一些替代方案,如果更方便的话,您还可以在函数中包含 Apply

f = (1 + # + #2) & @@ # &;

f @ {a, b}
1 + a + b

或者,您可以手动索引部件:

f = (1 + #[[1]] + #[[2]]) &;

最后,您可能已经知道这一点,但对于阅读此问题的其他人来说:

g[{x_, y_}] := 1 + x + y

g @ {a, b}
1 + a + b

To provide some alternatives, you can also include the Apply within the function if that is more convenient:

f = (1 + # + #2) & @@ # &;

f @ {a, b}
1 + a + b

Optionally, you can index parts manually:

f = (1 + #[[1]] + #[[2]]) &;

Finally, you may already know this, but for others reading this question:

g[{x_, y_}] := 1 + x + y

g @ {a, b}
1 + a + b
心是晴朗的。 2024-11-06 18:34:31

这是一个普通函数的版本(即可以使用方括号),它将采用任意列表。 Apply 已移至函数内部,## 表示 SlotSequence(参见 ___ 在模式匹配中)

In[1]:= (1 + ##&@@ #) &[{a, b}]
        (1 + ##&@@ #) &[{a, b, c, d, e}]

Out[1]= 1 + a + b

Out[2]= 1 + a + b + c + d + e

Here's a version that is an ordinary function (ie can use square brackets) that will take an arbitrary list. The Apply has been moved inside the function and the ## means SlotSequence (c.f. _ and __ in pattern matching)

In[1]:= (1 + ##&@@ #) &[{a, b}]
        (1 + ##&@@ #) &[{a, b, c, d, e}]

Out[1]= 1 + a + b

Out[2]= 1 + a + b + c + d + e
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文