Automatically create variable names
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello!
I am trying to create variable names automatically, such as:
Name_1
Name_2
Name_3
...
Name_N
To assign a different value to each one.
Do you know how to do it, any idea?
8 Kommentare
chrisw23
am 13 Feb. 2023
may be field names are a solution
define an empty struct
myStruct = []
and add fieldnames dynamically
myStruct.(<varName>) = myVal
Antworten (1)
埃博拉酱
am 13 Feb. 2023
NameIndex=1;
Value=2;
eval(sprintf('Name_%u=%d',NameIndex,Value));
This is possible by eval but as mentioned in the comments section, it is not recommended if there is not a very good reason.
1 Kommentar
Stephen23
am 13 Feb. 2023
Bearbeitet: Stephen23
am 13 Feb. 2023
The name "MATLAB" comes from "MATrix LABoratory", i.e. it is designed to work efficiently with arrays and indexing. Indexing is a MATLAB superpower. If you do not use indexing, then using MATLAB will be... difficult. The name "MATLAB" does not come from "lets store the data in lots and lots of separate variables and make our data harder to work with":
Siehe auch
Kategorien
Mehr zu Logical 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!