Re: How to avoid repeated recalculation of the same function
- To: mathgroup at smc.vnet.net
- Subject: [mg132671] Re: How to avoid repeated recalculation of the same function
- From: Sseziwa Mukasa <mukasa at gmail.com>
- Date: Sat, 3 May 2014 03:39:14 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-outx@smc.vnet.net
- Delivered-to: mathgroup-newsendx@smc.vnet.net
- References: <20140502061856.7A2216A46@smc.vnet.net>
If g is calling f with the same arguments all the time, memoize f: f[x_]:=f[x]=<expression>. Otherwise if the result of f is a simple symbolic expression, evaluate f once for x, then use the result to create another function h which g can call eg. simpleExpression = f[x]; h[y_]:= simpleExpression /. x->y; and call h from g instead of f. On May 2, 2014, at 2:18 AM, pgeipi10 at gmail.com wrote: > Hi, > > I'm doing a calculaton that's purly symbolic (no graphing, numerical integration, etc.). > > Suppose I have a function f[x_]:=... that's very complex to build. In fact, f[x] ends up being a manageable expression (about 30 characters) but it takes Mathematica about 30 min to build that expression. > > Another function g[] uses the function f[x] and references it many times. I've discovered that g[] actually builds f[x] every time it's referenced which takes 30 minutes each time. Theoretically, Mathematica could build it once and then use the resulting expression every time it's referenced. > > So how do I accomplish that? That is, how do I make it build f[x] once and then use the resulting expression when it's needed? > > Thanks, > > > Pavel >
- References:
- How to avoid repeated recalculation of the same function
- From: pgeipi10@gmail.com
- How to avoid repeated recalculation of the same function