Effacer les filtres
Effacer les filtres

How to derive a variable name from a variable?

1 vue (au cours des 30 derniers jours)
Rightia Rollmann
Rightia Rollmann le 7 Fév 2017
Modifié(e) : Jan le 8 Fév 2017
How to derive a variable name from a variable?
A = [5 6 7 8];
B = ‘A’;
A(1) % this works and return the first element of A which is 5
B(1) % this doesn’t work like the code above
  4 commentaires
Rightia Rollmann
Rightia Rollmann le 7 Fév 2017
What I want to do is to access the first column and then the second column of a 5-by-7 matrix which is the value of a field named B. B is the third field of struct A. How can I do it dynamically best?
Adam
Adam le 8 Fév 2017
If B is a field of A why are you trying to create a variable B that represents the whole of A.
Just A.( 'B' ) would give what you want. Fields are not really ordered in a struct, at least not for general usage.

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 7 Fév 2017
Modifié(e) : Stephen23 le 7 Fév 2017
Although often loved by beginners, dynamically accessing variable names is not a robust, fast, or good way to write code. It makes code hard to read, slow, difficult to debug, and has other disadvantages too:
If you really need to access the names dynamically, then consider using a structure: it is fast and easy to access structure field names dynamically:
S.A = [5,6,7,8];
x = 'A';
S.(x)

Plus de réponses (2)

Star Strider
Star Strider le 7 Fév 2017
MATLAB does not recognise char(0145) and char(0146) as quotation marks in code.
A = [5 6 7 8];
B = 'A' % Sets ‘B’ TO Be Character ‘A’
B = A
B(1)
produces:
B =
A
B =
5 6 7 8
ans =
5

Jan
Jan le 8 Fév 2017
Modifié(e) : Jan le 8 Fév 2017
According to your comment, which is another problem than the original question:
A.B(:, 1:2)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by