I would like to set values to a list of variables, like so:
list[[1]] = 2
and if list[[1]] is a, then a will now be equal to two. How can I achieve this?
|
I would like to set values to a list of variables, like so:
and if |
|||
|
|
Well, let's try it naively: Make a list:
It's as we expect it:
Set the first element to 2:
That doesn't affect a:
Start again:
The problem is that Set (=) has
Now the list seems to be the same as before:
but that's only because a is still there and has gotten the value of 2 (in the previous version a was replaced by 2):
If you now set a to 3 you'll see that that changes list too:
EDIT Perhaps more close to the wording of your question, you could
|
|||||||||||||
|
|
What you request is generally hard in Mathematica, since it is hard to imitate the pointer semantics. The following code will do specifically what you asked for, but is restricted to only symbols as list elements:
Examples:
|
|||
|
|
|
You could perhaps do:
Though that may be a bit hackish. The correct way is by playing around with how values are Held from being evaluated, but I couldn't remember how; see other answers. |
||||
|