Re: Mathematica 5.0: small change in fundamental behavior.
- To: mathgroup at smc.vnet.net
- Subject: [mg43084] Re: Mathematica 5.0: small change in fundamental behavior.
- From: "Dana DeLouis" <delouis at bellsouth.net>
- Date: Mon, 11 Aug 2003 02:16:01 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Slightly off topic. Mathematica 5 help file says "Subscripted" has been
obsolete since version 3. However, it still appears to work.
t_x := Subscripted[t]
z = Table[x[k], {k, 3}]
...and I get the same 2-dimensional output display as
z = Table[Subscript[x, k], {k, 3}]
--
Dana DeLouis
Windows XP
Mathematica 5.0 for Windows
delouis at bellsouth.net
= = = = = = = = = = = = = = = = =
"Bern" <bgress at mail.DOTucr.DOT.edu> wrote in message
news:bh278r$hsm$1 at smc.vnet.net...
> Hello everyone,
>
> Has anyone noticed that in 4.2 one can define
>
> x = Table[x_k,{k,3}]
>
> (where "_" means subscript) , for example,
>
> with no problem,
>
> but, in 5.0 one gets a recursion error?
>
> I think this will require me to rewrite more than one software now!
>
> Bernard