Can I detect array index inside setter method?
Show older comments
Is there a way to detect the index/position of the setted value inside a new defined setter method?
I mean, if I call
obj.Prop(idx) = val;
that
function set.Prop(obj,val)
if % idx > 5
val = ...;
end
obj.Prop = val;
end
does different calculations on specific indices.
THX
In MATLAB documentation is a short description I don't really understand________________________________________
Access Methods and Properties Containing Arrays
You can use array indexing with properties that contain arrays without interfering with property set and get methods.
For indexed reference:
val = obj.PropName(n);
MATLAB calls the get method to get the referenced value.
For indexed assignment:
obj.PropName(n) = val;
MATLAB:
- Invokes the get method to get the property value
- Performs the indexed assignment on the returned property
- Passes the new property value to the set method
2 Comments
Image Analyst
on 18 Jul 2020
I don't understand the question. In essence you say you want to "detect the index/position of the setted value" but then you say you did this:
obj.Prop(idx) = val;
so is idx NOT the index/position of the value you wanted to set? You already know this index value or else you could not have used it like that. So why do you think you need to "detect" it?
Konrad Warner
on 18 Jul 2020
Edited: Konrad Warner
on 18 Jul 2020
Accepted Answer
More Answers (0)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!