私はいくつかの広範なドキュメントを作成したスーパークラスを持っています。このスーパークラスから継承したサブクラスがあり、可能であればスーパーのドキュメントを再利用したいと考えています。たとえば、スーパー クラスの場合ClassA
:
classdef ClassA
%CLASSA Super Class for all others classes
%
% CLASSA Properties:
% Prop1 It's the first property
% Prop2 It's the second
%
% CLASSA Methods:
% Method1 It's a method
% Method2 It's another method
function value = Method1(var)
% Super implementation of Method1
end
% Other method definitions follow
end
そしてサブクラスの ClassB:
classdef ClassB < ClassA
%CLASSB Subclass of super class CLASSA
%
% CLASSB Properties:
% Prop3 It's the first property of subclass
%
% CLASSB Methods:
% Method 3 It's the first method of subclass
function value = Method1(var)
% Subclass implementation of Method1
end
% Other method definitions follow
end
入力すると、のヘルプの説明help ClassB
しか表示されません。ClassB
スーパーのヘルプの説明も入れてほしいです。出力は次のようになります。
CLASSB Subclass of super class CLASSA
CLASSB Properties:
Prop1 It's the first property
Prop2 It's the second
Prop3 It's the first property of subclass
CLASSB Methods:
Method1 It's a method
Method2 It's another method
Method3 It's the first method of subclass
これを行う方法はありますか?