How do I iterating through a struct with several levels?

조회 수: 6 (최근 30일)
HabenG
HabenG 2021년 12월 21일
댓글: Voss 2021년 12월 22일
I have a struct thats three levels deep and would like to iterate through the second level while keeping the last level a constant and save the data.
% This works but how do i iterate through d1,d and d3?
for i = 1 : 3
j.d(i) = data.d1(:,4)
end
  댓글 수: 1
Stephen23
Stephen23 2021년 12월 21일
편집: Stephen23 2021년 12월 21일
"I have a struct thats three levels deep"
Actually the uploaded data is a simple scalar structure, each field of which contains a numeric array:
S = load('data.mat');
data = S.data
data = struct with fields:
d1: [458×5 double] d2: [1915×5 double] d3: [3737×5 double]
Note that simpler data design would use indexing rather than forcing pseudo-indices into the fieldnames, e.g. by using a non-scalar structure or a cell array. Using indexing would make your code simpler than the current approach.
Note also that fields can change order.

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

채택된 답변

Voss
Voss 2021년 12월 21일
First, a point of clarification: the mat-file attached to the question contains a struct with three fields, each of which is an array, rather than a struct containing a struct containing another struct, which is what "a struct that's three levels deep" sounds like to me.
To iterate through the fields of a struct, you can use dynamic field names and the fieldnames function. For instance, to create a struct j that has the same fields as the struct data from the mat-file, but with only the 4th column from each, you can do this:
load data
display(data);
data = struct with fields:
d1: [458×5 double] d2: [1915×5 double] d3: [3737×5 double]
j = struct();
f = fieldnames(data);
for i = 1:numel(f)
j.(f{i}) = data.(f{i})(:,4);
end
display(j);
j = struct with fields:
d1: [458×1 double] d2: [1915×1 double] d3: [3737×1 double]
  댓글 수: 2
HabenG
HabenG 2021년 12월 22일
My mistake. I should've phrased the question better but thank you for the help.
Voss
Voss 2021년 12월 22일
No problem. I just wanted to clarify the terminology for future reference. Describing mathematical objects in English (or any human language) is bound to be ambiguous, but describing them in MATLAB (or any programming language) is unambiguous (hopefully).

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by