Re: multiple variables in pure function used in map.
- To: mathgroup at smc.vnet.net
- Subject: [mg107646] Re: [mg107632] multiple variables in pure function used in map.
- From: Adriano Pascoletti <adriano.pascoletti at dimi.uniud.it>
- Date: Sun, 21 Feb 2010 04:25:07 -0500 (EST)
- References: <201002201138.GAA13609@smc.vnet.net>
(#1 + #2) & @@@ ab Plus @@@ ab Total/@ab Adriano Pascoletti 2010/2/20 pipehappy <pipehappy at gmail.com> > Hi, All > > Is there a way to use multiple variables in pure function with map. > > What I want to do is like this: > > ab = {{1, 2}, {2, 3}, {3, 4}}; > (#[[1]] + #[[2]]) & /@ ab > {3, 5, 7} > > Instead of refer to elements in list I want to use multiple variables > in pure function. > > something like this: > ab = {{1, 2}, {2, 3}, {3, 4}}; > (#1 + #2) & /@ ab > To do the same thing as the above example. > > Best > > -- pipehappy > >
- References:
- multiple variables in pure function used in map.
- From: pipehappy <pipehappy@gmail.com>
- multiple variables in pure function used in map.