I'm stuck in scripting in Mathematica, since I need to assign a value to "elements" of a list, named as a "subscripted variable" (the subscript is also a variable), but it seems that in Mathematica it's not that straight forward like for instance:
Subscript[a,i][[1]]=10;
Error: "a_i" in the part assignment is not a symbol.
I really need to use subscripted variables. I googled it and found some discussions regarding symbolizing subscripted variables ( "a_i" in this example), but I couldn't figure it out, what should I do exactly.
So, any clue about how to manage such thing is highly appreciated?
Sincerely, Marilla.
a[i] = 10– Quantum_Oli Mar 10 '16 at 10:06