Suppose I have three variable stored in workspace like following
a = [1 2 4 8]
b = [4 9 3 8]
c = [8 6 4 2]
and I want to make a cell array of them and store it in x using a who command like
x = who
now a new cell array is stored as x that contains { 'a' 'b' 'c' }
but how can I call the values of variables stored in a like x{1} returns me value 'a' and I want to get
[1 2 4 8]
as the result
Thanks