Re: Clear, Remove variables
- To: mathgroup at smc.vnet.net
- Subject: [mg77024] Re: Clear, Remove variables
- From: Miguel <misvrne at gmail.com>
- Date: Thu, 31 May 2007 05:36:32 -0400 (EDT)
- References: <f3jh9p$ded$1@smc.vnet.net><f3lukq$6rg$1@smc.vnet.net>
On 31 mayo, 09:48, Szabolcs <szhor... at gmail.com> wrote: > Miguel wrote: > > In version 6.0, I can not to clean variables with subscripts by Clear > > or Remove. Why?. > > > Can I to copy and to use the package Utilities`SubscriptSymbols`of 5.2 > > version in 6.0 version? > > Could you be a little more specific, perhaps give an example? As far as > I know there is no Utilities`SubscriptSymbols` package in 5.2 (at least > I couldn't find one) so I was unable to try this ... Dear Szabolcs: The Utilities`SubscriptSymbols` is a package ellaborated by Ted Erseck that is in Wolfram Library Archive. You can to find it via Google (or others). It permit to clean and to remove variables or functions with subscripts. Before to be charged the package: In[1]: x[Subscript,1]=15 Out[1]:15 In[2]: Clear[x[Subscript,1]] Out[2]:Message: x[Subscript,1] is not a symbol .... After to be charged the package: In[1]: x[Subscript,1]=15 Out[1]:15 In[2]: Clear[x[Subscript,1]] Out[2]: It occurs the same for functions with subscripts F[Subscript,1] .... But this functionality is not implemented in Version 6.0 and I think that is a functionality very useful. I have proved to copy this package in version 6.0 but doesn't works fine. Does exist a solution?