Re: how to compact many maps?
- To: mathgroup at smc.vnet.net
- Subject: [mg70771] Re: how to compact many maps?
- From: dh <dh at metrohm.ch>
- Date: Fri, 27 Oct 2006 00:28:07 -0400 (EDT)
- References: <ehplcu$j9g$1@smc.vnet.net>
Hi,
somewhat simpler:
Map[f, tab[[All, All, 2]], {-1}]
Daniel
Arkadiusz.Majka at gmail.com wrote:
> Hi,
>
> For table of the following structure
>
> tab=Table[{Random[],Random[]},{10},{5}]
>
> I want to apply function f to the second argument of list.
>
> I did:
>
> (MapAt[f, #, 2] & /@ #) & /@ tab
>
> How can I do it in a simpler, more compact way?
>
> Thanks,
>
> Arek
>