Can I do the following idea in Matlab command? Assuming that
a = 'c1Tl';
class(a) will return cell.
How I can use the content of an as a cell variable which I can do
c1Tl = 3;
I try to use
sym(a) = 3;
to assign a variable to the content of 'a' but It is not my purpose. Please help to solve my problem! Thank you!