Re: Applying a list of functions to a list of arguments
- To: mathgroup at smc.vnet.net
- Subject: [mg57358] Re: Applying a list of functions to a list of arguments
- From: "meznaric" <meznaric at gmail.com>
- Date: Wed, 25 May 2005 06:03:08 -0400 (EDT)
- References: <d6usl9$j41$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
What you are trying to do can be achieved in the following way: Flatten[Inner[Map[#1, {#2}] &, f,a,List]] Lists f and a can be of arbitrary, but of equal length. Sebastjan