change the element-by-element organization into a plane organization

조회 수: 1 (최근 30일)
Hello
I have an array <20000x1 struct> in element-by-element organization. Each of the 20000 entries has more than 30 fields.
I would like to change the element-by-element organization into a plane organization.
I found how to do it from plane to element-by-element ( http://www.mathworks.com/matlabcentral/answers/4581-deleting-the-i-th-entry-from-all-fields-of-a-struct) but I cannot figure out how to do it in the opposite way.
Could you help me, please?
Thank you very much
Claudia
  댓글 수: 1
Claudia
Claudia 2012년 11월 8일
long time ago I found my own solution but forgot to put it here. So, here it is:
folder = ['/scratch ...']
fields = fieldnames (datastructold) ;
for f = 1:size(fields,1) ;
varname = genvarname(fields{f}) ;
extract = {datastructold.(varname)};
datastructnew.(varname) = extract ;
end
v = genvarname([ 'name' ]) % name for variable
S.(v) = datastructnew
save([ folder v '.mat' ] , '-struct' , 'S' ) ; % name for .mat

댓글을 달려면 로그인하십시오.

채택된 답변

Claudia
Claudia 2013년 1월 29일
long time ago I found my own solution but forgot to put it here. So, here it is:
folder = ['/scratch ...']
fields = fieldnames (datastructold) ;
for f = 1:size(fields,1) ;
varname = genvarname(fields{f}) ;
extract = {datastructold.(varname)};
datastructnew.(varname) = extract ;
end
v = genvarname([ 'name' ]) % name for variable
S.(v) = datastructnew
save([ folder v '.mat' ] , '-struct' , 'S' ) ; % name for .mat

추가 답변 (2개)

Walter Roberson
Walter Roberson 2012년 5월 15일
struct2cell(), then either cell2mat() or expand the cell within a vertcat() or horzcat().
However, if the fields are not all exactly the same size or are of mixed numeric type involving more than one integer data type, then you are going to have problems.
  댓글 수: 1
Claudia
Claudia 2012년 5월 18일
Hi Walter
Thank you for your answer. I tried what you suggested.
But for cell2mat all contents of the input cell array must be of the same data type.
And vertcat() and horzcat() did not change anything at all.
So, at the end I missed the step to get the structure with plane organization.
It would be nice if you could explain that step.
Thanks, Claudia

댓글을 달려면 로그인하십시오.


Sean de Wolski
Sean de Wolski 2012년 11월 8일
편집: Sean de Wolski 2012년 11월 8일
So if this is a simple example of your struct:
S = struct('field1',num2cell(1:10),'field2',num2cell(repmat(pi,1,10)))
Then I would recommend using:
S2 = squeeze(struct2cell(S))
To now have a 2x10 cell array.

카테고리

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