Namespaces for variables, several measurements

8 views (last 30 days)
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?

Accepted Answer

Walter Roberson
Walter Roberson on 27 Dec 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 Comment
Lennart
Lennart on 9 Jan 2014
Ah thanks! Do have to convert first to mat files mut this works handy!

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!