gpt4 book ai didi

抽象方法的 MATLAB 帮助内容

转载 作者:行者123 更新时间:2023-12-02 06:25:14 26 4
gpt4 key购买 nike

在普通的类方法中,我可以为 MATLAB 中的“帮助”命令提供内容。但是写抽象方法的时候,帮助函数是看不到抽象方法的。例如,如果您有一个类 NeedsHelp:

classdef NeedsHelp
methods (Abstract)
INeedHelp(self)
% This method is not visible to the help command.
end
methods
function IHaveHelp(self)
% This method shows help as expected.
end
end
end

帮助命令的作用如下 (R2009b):

>> help NeedsHelp.IHaveHelp
This method shows help as expected.

>> help NeedsHelp.INeedHelp

NeedsHelp.INeedHelp not found.

是否有任何解决方案可以为抽象方法提供文档?

最佳答案

将帮助放在抽象方法的之前函数行,就像您对属性所做的那样。我没有要测试的 9b,但在 11b 中:

classdef NeedsHelp
methods (Abstract)
% Help goes here.
INeedHelp(self)
end
end

>> help NeedsHelp.INeedHelp
Help goes here.

关于抽象方法的 MATLAB 帮助内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1925222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com