Re: Thread function over matrix elements?
- To: mathgroup at smc.vnet.net
- Subject: [mg69881] Re: [mg69865] Thread function over matrix elements?
- From: Andrzej Kozlowski <akoz at mimuw.edu.pl>
- Date: Tue, 26 Sep 2006 05:21:29 -0400 (EDT)
On 26 Sep 2006, at 13:59, ben wrote:
> Dear all,
>
> how do I thread a function over all elements of a matrix?
> This piece of code works, but I doubt its the way i am supposed to do
> this
>
> mat=Table[i+j,{i,0,2},{j,0,2}]
>
> Map[Map[f[#]&,#]&,mat]
>
> I tried
>
> Map[f[#]&,mat,2]
> Apply[f[#]&,mat,2]
> Thread[f[mat]]
>
> but they give weird results.
>
> Cheers
> Ben
>
Map[f, mat, {2}]
Note the difference between the level specification {2} and 2 (as you
had originally).
Andrzej Kozlowski