Select Structure Field Based on Variable
18 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Louis-Thomas Roy
el 19 de Sept. de 2022
Comentada: Stephen23
el 19 de Sept. de 2022
Let's say I have a structure with multiple fields structured like this:
Structure.A = 5;
Structure.B = 10;
Structure.C = 30;
If I have a variable:
Field = "B"
Can I select the field B in the structure and set it equal to a new value? When I run this code, it creates a new field called "Field" instead of selecting the existing one from the value of Field.
Structure.Field = 15;
Respuesta aceptada
Bhaskar R
el 19 de Sept. de 2022
There is special notation to access structure or class field using parenthesis () of input string
Structure.A = 5;
Structure.B = 10;
Structure.C = 30;
Field = "B"
Structure.(Field) = 15 % this updates required field without adding extra field
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!