MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Saving Interpolated Function

  • To: mathgroup at smc.vnet.net
  • Subject: [mg81021] Re: [mg80986] Saving Interpolated Function
  • From: Sseziwa Mukasa <mukasa at jeol.com>
  • Date: Sat, 8 Sep 2007 03:50:36 -0400 (EDT)
  • References: <200709070603.CAA06361@smc.vnet.net>

On Sep 7, 2007, at 2:03 AM, lederer at ssb.rochester.edu wrote:

> I am doing some numerical analysis leading to an interpolated function
> that I will need later.
>
> These calculations take many minutes, and I want to beable to save the
> interpolated function--so it does not have to be regenerated every
> time I come back to the problem.
>
> How can I do this.?

Use Get and Put eg:

g=Interpolation[Range[5]];
g>>"func";
e=<<"func";
Plot[g[x],{x,1,5}]
Plot[e[x],{x,1,5}]

Regards,

Ssezi


  • Prev by Date: Re: Bug with 3D graphics lines
  • Next by Date: Creating slide-shows with Manipulate images
  • Previous by thread: Saving Interpolated Function
  • Next by thread: Re: Saving Interpolated Function