MATLAB: Clearing a particular class definition from memory

clear classesmemoryoop

I know that `clear classes` will clear all classes from memory, but I cannot find a way to clear one particular class. Entering
>> clear classname
does not work. Is there a way to do this?
In other forums, clearing all instances of the class, either manually or by automated means, has been proposed. This doesn't work however, as the following example shows. The constant property data remains.
classdef myclass
properties (Constant)
prop=17;
end
end
>> obj=myclass; myclass.prop
ans =
17
>> clear obj; myclass.prop
ans =
17

Best Answer

myclass.prop is possible because Constant=true. It doesn't require the class to be in memory. obj=myclass; is not needed.