Re: how to map function with over 1 arguments to list
- To: mathgroup at smc.vnet.net
- Subject: [mg57236] Re: how to map function with over 1 arguments to list
- From: "Kezhao Zhang" <kezhao.zhang at gmail.com>
- Date: Sat, 21 May 2005 02:40:38 -0400 (EDT)
- References: <d6ka03$168$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In this particular case, you may use Apply (at level 1): f@@@{{1,1},{2,2}} {2,4} One way to use Map is f[#[[1]],#[[2]]]&/@{{1,1},{2,2}} {2,4} Hope this helps. K. Zhang