The MATLAB built-in classes have values ββfor the Description and DetailedDescription attribute:
>> ?handle ans = meta.class handle Package: meta Properties: Name: 'handle' Description: 'Base class for handle classes' DetailedDescription: '' [snip]
Similarly, some methods and properties of built-in classes have the same attributes:
>> a = ?containers.Map; >> a.PropertyList(1) ans = meta.property handle Package: meta Properties: Name: 'Count' Description: 'Number of pairs in the collection' DetailedDescription: '' [snip]
How to set these attributes for my classes / methods / properties?
Sam roberts
source share