MATLAB: How to assign A or B or C to a Variable

change variable name.

Hi all; I have some variables and want to change their name. For example RSxi should change to RSai then it should change to RSbi In fact at any time A or B or C will assign to x in the variable name. Please help me? what can I do? Regards

Best Answer

Assuming you already have a variable called RSxi, to rename it, you simply assign it to a new variable with your desired new name. Then you can clear the old variable if you want:
% Rename RSxi to RSai
RSai = RSxi;
clear('RSxi'); % If you want to get rid of old variable, clear it.

% Rename RSai to RSbi
RSbi = RSai;
clear('RSai'); % If you want to get rid of old variable, clear it.
Related Question