Re: Treat subscripted variables as symbols
- To: mathgroup at smc.vnet.net
- Subject: [mg120904] Re: Treat subscripted variables as symbols
- From: Simon <simonjtyler at gmail.com>
- Date: Sun, 14 Aug 2011 20:19:57 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <j28emt$3fa$1@smc.vnet.net>
- Reply-to: comp.soft-sys.math.mathematica at googlegroups.com
Hi Camille, The easiest way to make subscripted variables into symbols is to use Symbolize from the Notation package. Needs["Notation`"]; Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]]] See http://stackoverflow.com/q/5481216/421225 for more details.