Namespaces for variables, several measurements

4 Ansichten (letzte 30 Tage)
Lennart
Lennart am 27 Dez. 2013
Kommentiert: Lennart am 9 Jan. 2014
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?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 27 Dez. 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
  1 Kommentar
Lennart
Lennart am 9 Jan. 2014
Ah thanks! Do have to convert first to mat files mut this works handy!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB 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!

Translated by