Creating structs with variable names of read-in data parameter names
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mark
le 11 Fév 2014
Commenté : Walter Roberson
le 11 Fév 2014
I'm reading large excel file with both headers and data values. I've attached a sample.
I have many 'Days' (Day 1, Day 2, Day 3 etc.) of data. On any given 'Day,' I may have a few 'tests' (test1, test2, test3 etc.). Within those tests I have a couple variances, like stage, or if the column contains input data or measured values.
I have several columns of data correpsoinding Day 1, Day 2 and so on. What I want is to create a struct for each 'Day' and test whose variable names are the names of the day and test number, so I could say
M = Day1.test1
or something like that. The end goal is to write a csv file for each individual test. I was thinking structs would be a good way to do that, but if someone has a better suggestion I would gladly take it. Thanks
2 commentaires
Réponse acceptée
Walter Roberson
le 11 Fév 2014
Dynamic field names can get you everything except for the outer structure name, but you could toss everything into one container struct.
M = alldays.(DayField).(TestField)
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Database Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!