Accessing values of fieldnames in a structure without using the fieldnames function
조회 수: 8 (최근 30일)
이전 댓글 표시
Hi all,
I've got a structure which has 20 different field names, e.g. 'fieldname01','fieldname02' etc.
Each fieldname has a numeric value, such as:
fieldname01: 0.56 fieldname02: 0.93 fieldname03: -0.34
Up to fieldname20
I need to access the numeric values of certain field names, for example the 2nd, 5th and 15th. Just wondering what would be the right way about doing this without using the fieldnames function if that's possible at all?
Thank you.
댓글 수: 0
채택된 답변
Sven
2013년 4월 4일
편집: Sven
2013년 4월 4일
Hi Jess,
Use parentheses:
S = struct('field1',1,'field2',2)
fieldStr = ['fields' num2str(1)]
S.(fieldStr)
ans =
1
Or, with your particular example:
for i = 1:20
val = S.(sprintf('fieldname%02d',i))
end
Please note however that the "right" way to store data from 1 to 20 isn't in a structure with the number built into the name. Instead it sounds like you should be using an array (or cell array if your datatypes are different).
For example:
myData = [12 10 3];
is much cleaner than:
myData.element1 = 12
myData.element2 = 10
myData.element3 = 3
댓글 수: 2
Jan
2013년 4월 4일
+1 for mentioning, that an enumeration of fieldnames is much worse than using arrays.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!