Re: Evaluating expressions in pure functions
- To: mathgroup at smc.vnet.net
- Subject: [mg28464] Re: [mg28453] Evaluating expressions in pure functions
- From: BobHanlon at aol.com
- Date: Fri, 20 Apr 2001 04:24:13 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Attributes[Function] {HoldAll, Protected} Release /@ (Exp[2*3*#]&) E^(6*#1) & Bob Hanlon In a message dated 2001/4/19 3:48:22 AM, ulbrich at biochem.mpg.de writes: >I have the following problem: >I have a pure function with a product of numbers in it. >Mathematica doesn't evaluate the product: > >Exp[2*3*#]& > >I just want to get > >Exp[6*#]& > >How can I make Mathematica do this? >