How can I save the contents of a struct to a .mat file?

265 次查看(过去 30 天)
I have a 1x1 struct called dataout. It consists of several fields, each containing a cell array.
>> dataout
dataout =
field1: {6x6 cell}
field2: {6x6 cell}
field3: {6x6 cell}
field4: {6x6 cell}
I want to export this struct to a .mat file so that a = load('file.mat') will result in a struct-variable a containing all fields.
So in the end I want a .mat file which will fulfill the following:
>> a = load('file.mat')
a =
field1: {6x6 cell}
field2: {6x6 cell}
field3: {6x6 cell}
field4: {6x6 cell}
I have tried save(filename,'dataout') but this results in a .mat-file that reacts differently:
>> save('file.mat','dataout');
>> b = load('file.mat')
b =
dataout: [1x1 struct]
Can somebody help me?

采纳的回答

Stephen23
Stephen23 2016-6-24
编辑:Stephen23 2016-6-24
Solution
This is exactly what load does when it has an output variable: it loads into one structure, where each field is one of the variables that were saved in the .mat file. So when you save only one variable dataout, the output of load is a structure with one field: dataout (your structure, but it could be anything). You can access your structure in the usual way:
S = load('file.mat');
b = S.dataout;
Here is a complete working example of this:
>> old.a = 12.7;
>> old.b = NaN;
>> old.c = 999;
>> save('test.mat','old')
>> S = load('test.mat');
>> new = S.old; % <- yes, you need this line!
>> new.a
ans = 12.700
Alternative
As an alternative you can actually change the save call to get exactly the effect that you desire, by using the '-struct' option:
>> save('test.mat','-struct','old') % <- note -struct option
>> new = load('test.mat');
>> new.c
ans = 999
This simply places all of the fields of the input scalar structure as separate variables in the mat file. Read the help to know more.
  2 个评论
Konstantin Davy
Konstantin Davy 2016-6-24
Thanks for your answer.
This works - but it would require me rewriting a couple of programs in our company.
Our measurement devices already export .mat-files that react as I described when being loaded, and I now want to create similar files. (I am converting data from an old format into .mat-files, and the resulting files should be in the same format as the files produced by the measurement devices)
Konstantin Davy
Konstantin Davy 2016-6-24
Ah, I think this solves it - I need to store all fields of my dataout-structure seperately into the same file.

请先登录,再进行评论。

更多回答(1 个)

karipuff
karipuff 2023-4-26
%%% Saving content of structure
field_str = fieldnames(a);
save('filename.mat', field_str{:})
%% Loading content of structure
b = load('filename.mat');
b =
field1: {6x6 cell}
field2: {6x6 cell}
field3: {6x6 cell}
field4: {6x6 cell}

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by