Filtering array of custom objects
显示 更早的评论
Hey!
I was wondering if it is possible to implement the filtering of arrays as describes here: Find Array Elements That Meet a Condition for an array holding objects of a custom class.
I have a class with the following property
properties (Access = public)
stages (1,:) EnvelopeStage
end
An EnvelopeStage object has the following properties
properties (GetAccess = public, SetAccess = public)
name string
duration double {mustBeFinite, mustBeNonnegative, mustBeLessThanOrEqual(duration,1)} = 0
target_level double {mustBeFinite, mustBeNonnegative, mustBeLessThanOrEqual(target_level,1)} = 0
end
What would be the smartes way (besides iterating over the array) to filter by name?
Is there a way to implement or use a function that yields the elemtens with code like this:
stages(stages.name == 'foo');
Thank you very much
Tim
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!