Re: Retrieving orphaned code
- To: mathgroup at smc.vnet.net
- Subject: [mg109049] Re: Retrieving orphaned code
- From: David Reiss <dbreiss at gmail.com>
- Date: Mon, 12 Apr 2010 06:50:59 -0400 (EDT)
- References: <hps1gg$6mk$1@smc.vnet.net>
In[9]:= f[x_] := x
In[10]:= UpValues[f]
Out[10]= {}
In[11]:= DownValues[f]
Out[11]= {HoldPattern[f[x_]] :> x}
In[12]:= ?? f
Global`f
f[x_]:=x
--David
On Apr 11, 4:33 am, Michael Young <michaelcharlesyo... at earthlink.net>
wrote:
> Hello,
>
> I seem to have accidentally 'orphaned' three functions i built .
>
> That is, the code is still active in memory, and the function name
> shows in black and displays its intended data ; however, the file's
> copies of the functions' source-code have been modified and recompiled
> under different names, for different purposes .
>
> Is there a way to retrieve function source-code in Mathematica ?
>
> Michael