MATLAB: Immutable properties and subclass constructors

immutable propertiesMATLABobject constuctorsobject inheritanceoop

Is it possible to somehow set immutable superclass properties in a subclass constructor? It seems not, but maybe I'm just misinterpreting the documentation and error messages and this is possible somehow?
In case this doesn't make sense, my motivation is this: I've written a fairly nice data-analysis object that I use as a superclass all the time. It loads data from the data acquisition tool we normally use, and I have different subclasses for different experiments, which have different analysis requirements but most of the basics are the same (and located in the superclass).
Now I'd like to re-use all that code by loading data (of essentially the same form) but from a different filetype (new constructor required) into the properties expected by the superclass. I could just make the properties protected in the superclass (instead of immutable), but I'd really like them to only be changed within the constructor of the new subclass.
Or maybe I should be approaching this in a different way entirely?

Best Answer

Thank you, but I should have rephrased my question - I was looking for a way to overwrite the value set by the superclass constructor.
I'm not sure why it would be preferable to overwrite when you can just set the value in the subclass constructor directly. Nevertheless, if you must do this, an alternative would be to convert your original immutable property (let's call it "immutableProp") to a Dependent property like in the following,
classdef myclass
properties (SetAccess=immutable)
p;
end
properties (Dependent)
immutableProp; %imitates an immutable property
end
methods
function obj=myclass(pValue)
obj.p=pValue;
end
function out=get.immutableProp(obj)
out = obj.accessIt;
end
function out=accessIt(obj)
out=obj.p;
end
end
end
Then in your subclass, you simply overload accessIt() in a way that causes immutableProp to refer to q instead of p.
classdef mysubclass<myclass
properties (SetAccess=immutable)
q;
end
methods
function obj=mysubclass(pValue, qValue)
obj=obj@myclass(pValue);
obj.q=qValue;
end
function out=accessIt(obj)
out=obj.q;
end
end
end