Suppose I define the following (bad) pattern
Subscript[\[Beta], i_][x_] := Subscript[\[Beta], i][x[[i]]];
-
Is it possible to clear this pattern without clearing definitions for all the other subscripted variables? My first thought would be to modify Subscript’s DownValues, but it seems to be empty
-
Is it possible/practical to have functions with subscripted arguments? IE, something along the lines of
f[x_1,x_2,x_3]:=Total[x_#&/@Range[3]]. I’ve heard people useSymbolizeto help with subscripts, would it work here?
It is in
SubValues(seeInformation["*Values"]).Just use
=.to clear:HTH