gpt4 book ai didi

function - 向 'help' 函数发送参数

转载 作者:行者123 更新时间:2023-12-04 05:42:34 24 4
gpt4 key购买 nike

如何向 help 发送参数功能?

我希望有这样的东西:

function intro(funcname)
disp('This is an introduction to the function you chose. See the help below:')
help funcname
end

我可以在其中显示函数的帮助文本,该名称在函数中作为参数出现。但是,当 MatLab 只搜索 funcname 时,上述方法不起作用。作为函数名而不是变量值。

最佳答案

简而言之:是的,你可以做到,使用help的函数形式:

  x = 'mean';
help(x);

在你的例子中:
function intro(funcname)
disp('This is an introduction to the function you chose. See the help below:')
help(funcname);
end

说明:
您正在使用的表格
help xxx

只是一个捷径:
 help('xxx');

如果您有多个由空格分隔的参数(感谢@Amro),它就像发送多个参数一样:
例如:
mcc -m fileNames

等于
mcc('-m','fileNames');

作为代表我意见的旁注,我想补充一点,一般来说,第二种形式是首选,除非您编写快速而肮脏的代码。

关于function - 向 'help' 函数发送参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11101049/

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