Structs fields indexing issue
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a structure 'Parent', which stores three structs named 'Child1','Child2' and 'Child3' (these structs have the same fields with different values). I would like to know how to find if any of those 3 structs matches a condition. For example, something like:
find(Parent.*.field_1 == 2)
any help would be appreciated.
0 个评论
采纳的回答
Stephen23
2018-3-7
编辑:Stephen23
2018-3-7
If all of the child structures have exactly the same fields then you would be much better off using a non-scalar structure instead of nested structures:
S(1).field = ...
S(2).field = ...
S(3).field = ...
Then you could trivially do this:
find([S.field] == 2)
Using a non-scalar structure would make your code much simpler and more efficient.
1 个评论
Jos (10584)
2018-3-7
While Stephen is absolutely right about the benefits of using an array of structures, take note that this concatenation would yield different indices from applying find on each structure element separately:
A(1).f = [1 2] ;
A(2).f = [2 3 2] ;
find([A.f]==2) % → 2 3 5 !
[find(A(1).f==2) find(A(2).f==2)] % → 2 1 3 !
更多回答(1 个)
Jos (10584)
2018-3-7
Parent.Child1.field_1 = [1 2 2 3] ;
Parent.Child2.field_1 = [1 3 3 2 3 2] ;
Parent.Child3.field_1 = [2] ;
A = structfun(@(S) find(S.field_1==2), Parent, 'un', 0)
A = horzcat(A{:})
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!