How to search through nested property's values of the class array?
5 次查看(过去 30 天)
显示 更早的评论
Assume we have array of class objects. Our class is a subclass of the handle class. We can use findobj function to find handle objects by first-level property's value. It's ok.
For example, a class structure:
className
|——property1
|——property2
|——structproperty1
———|——innerProperty1
———|——innerProperty2
A findobj function will return results only if every structure field is filled. Below is an example.
b = 1x1234 className;
structToFind = struct ('innerProperty1', 10, 'innerProperty2', 20);
H = findobj (b, 'structproperty1', structToFind);
I want to search className handle objects by innerProperty1. Is there any way to make it possible?
0 个评论
回答(2 个)
Tejas
2016-3-22
‘findobj’ matches the properties with in an object to find a matching object with the specified property.
As you are looking to match inner properties, I am not sure ‘findobj’ can be helpful. If you are open to implementing your own way of achieving this then the following might be useful.
Let us suppose your objects belong to class that looks like this:
classdef WithStruct < matlab.mixin.SetGet
properties
struct_prop
end
methods
function obj = WithStruct
val1 = randi(100); val2 = randi(50);
obj.struct_prop.inner1 = val1;
obj.struct_prop.inner2 = val2;
end
end
end
I am using ‘ structfind ’ from File Exchange to find the matching object. You could implement something that does this which is more tailored to your requirements.
>> h = [WithStruct WithStruct];
>> structfind(cell2mat(get(h,'struct_prop')),'inner1',49)
ans =
1 % index of the matching object in ‘h’ array
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Programming 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!