I want to do the following. Say I have a list:
test = List[a,b,c]
and I now want to assign some value to elements of that list, so that say if I assign 4 to a, when I input a it spits 4 out. How can I do that?
Only just started with Mathematica, there is probably some very easy answer to that question but I don't seem to be able to figure it out myself. I'd appreciate some help.
test[[1]] = 4;– march Dec 19 '18 at 16:25