Create a method that overloads a property?

3 views (last 30 days)
I have an established object I would like to overload one of its properties by creating a method of the same name.
My idea for solving this predicament is to create a method of the same name as the property that simply filters out the non-positive inputs and returns the positive inputs that the original property would otherwise return. Currently, the method of myProp is underlined red because its use is "inconsistent with its previous use".
classdef myObj
properties
myProp % This is an Mx3 matrix.
end
methods
function obj = myObj() % Instantiate.
obj.myProp = randi(9,5,3);
end
function myProp_Output = myProp(rows,columns)
%MYPROP Returns data of myProp while accomodating for
%non-positive row inputs.
idx0 = rows == 0;
myProp_Output = zeros(length(rows),columns);
myProp_Output(~idx0,columns) = myObj.myProp(rows(~idx0),columns);
end
end
end
I would like to do this because I've created some code that creates arrays for indexing that might have some non-positive indices (zero) and sometimes I use these arrays to index into a property of my object. I've read a little documentation on overloading in MATLAB but I haven't yet found anything that would help me overload a property of an object with a method.
For example:
obj = myObj(); % Instantiate w random integers
indices = [0 3 5];
obj.myProp(indices,:) % Doing this will result an error because of the non-positive index.
I would like this to be the output:
[0 0 0; obj.myProp(3,:); obj.myProp(5,:)]

Accepted Answer

Cedric
Cedric on 25 Oct 2017
Edited: Cedric on 25 Oct 2017
We usually do this using setters and getters. You will find plenty of doc if you google these terms, e.g. this for SET and this for GET.
EDIT: if you are just starting OOP, congratz., you just spontaneously tried to invent an important mechanism! Looking at the following page of the doc will give you an idea of what exists on the matter:

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!