How can I refer to all fields (of a particular level) within a structure?
조회 수: 3 (최근 30일)
이전 댓글 표시
Example: I have a struct such as this (simplified): Students.Gender.Height
I want to refer to and operate upon all fields regardless of gender. So, Students.Boy.6feet or Students.Girl.6feet would both be affected by the operation. Not a great example, but I hope I am conveying the need here. Is there a wildcard or () or {} type of way to index or refer to all fields of the "gender" level?
댓글 수: 0
채택된 답변
James Tursa
2018년 7월 5일
What "works" is probably going to depend on what is contained in the sub-fields and what you intend to do with this data downstream in your code. E.g., for your simplistic example if you wanted to extract the data (assuming the Height was scalar):
result = cellfun(@(x)Students.(x).Height,fieldnames(Students))
That would give you a result variable that you could use downstream.
Maybe you could give us more detail on the fields of your structure, and what operations you intend.
추가 답변 (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!