内置 MATLAB 类具有 Description 和DetailedDescription 属性的值:
>> ?handle
ans =
meta.class handle
Package: meta
Properties:
Name: 'handle'
Description: 'Base class for handle classes'
DetailedDescription: ''
[snip]
同样,内置类的一些方法和属性具有相同的属性:
>> a = ?containers.Map;
>> a.PropertyList(1)
ans =
meta.property handle
Package: meta
Properties:
Name: 'Count'
Description: 'Number of pairs in the collection'
DetailedDescription: ''
[snip]
如何为我的类/方法/属性设置这些属性?