How to assign A or B or C to a Variable?

3 Ansichten (letzte 30 Tage)
Reza
Reza am 19 Dez. 2015
Bearbeitet: Stephen23 am 19 Jun. 2019
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

Akzeptierte Antwort

Image Analyst
Image Analyst am 19 Dez. 2015
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.

Weitere Antworten (2)

dpb
dpb am 19 Dez. 2015
You do NOT want to do this...for why and alternatives, see the FAQ How can I create variables?

Stephen23
Stephen23 am 19 Dez. 2015
Bearbeitet: Stephen23 am 19 Jun. 2019

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by