I want to set a variable using matlab eval/feval function. It is possible to write the whole statement as a string and use = sign, but I want to pass the value as a separate argument (not in string).
The arithmetic operators in matlab have function equivalents, so the strings of these functions names can be used in eval and feval functions. Is there a function equivalent for the = operator?
The mechanism I am looking for would be like:
eval('set','x',5)
And I expect it to set value of the variable x to 5.
