Namespaces for variables, several measurements
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
It would be nice if Matlab would have a namespace feature. I have several logfiles which have some variables, for instance
voltage1, voltage2, current1, current2.
This measurement has been repeated several times, but this creates a problem if you want to load all the files that variables get overwritten. Thus you have to create custom variables. It would be nice if if was possible to load the variables like this in one load command:
measurement_set1/voltage1
measurement_set1/voltage2
measurement_set1/current1 etc.
and the other
measurement_set2/voltage1
measurement_set1/voltage2
And acces them in this way. Or is there another fast way to do this?
0 commentaires
Réponse acceptée
Walter Roberson
le 27 Déc 2013
measurement_set1 = load('File1.mat');
measurement_set2 = load('File2.mat');
measurement_set1.voltage1
measurement_set1.voltage2
measurement_set1.current1
measurement_set2.voltage1
measurement_set2.voltage2
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox 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!