gpt4 book ai didi

matlab - 如何在 matlab 中检索函数参数的名称?

转载 作者:太空宇宙 更新时间:2023-11-03 19:07:56 25 4
gpt4 key购买 nike

除了解析函数文件,有没有办法在 matlab 中获取函数的输入和输出参数的名称?

例如,给定以下函数文件:

划分.m

function [value, remain] = divide(left, right)
value = floor(left / right);
remain = left / right - value;
end

从函数外部,我想获得一个输出参数数组,这里是:['value', 'remain'],对于输入参数也是如此:['left ', '正确'].

在 matlab 中有没有简单的方法来做到这一点? Matlab 通常似乎很好地支持反射。

编辑背景:

这样做的目的是将功能参数呈现在一个窗口中,供用户输入。我正在编写一种信号处理程序,对这些信号执行操作的函数存储在一个子文件夹中。我已经有了一个列表和每个函数的名称,用户可以从中选择,但有些函数需要额外的参数(例如,平滑函数可能将窗口大小作为参数)。

此时,我可以在程序会找到的子文件夹中添加一个新函数,用户可以选择它来执行操作。我缺少的是让用户指定输入和输出参数,在这里我遇到了障碍,因为我找不到函数的名称。

最佳答案

MATLAB 提供了一种获取有关类元数据的信息的方法(使用 meta 包),但这仅适用于 OOP 类而不适用于常规函数。

一个技巧是即时编写一个类定义,其中包含您要处理的函数的源代码,然后让 MATLAB 处理源代码的解析(这可能会像您想象的那样棘手:函数定义行跨越多行,实际定义之前的注释等...)

因此在您的案例中创建的临时文件如下所示:

classdef SomeTempClassName
methods
function [value, remain] = divide(left, right)
%# ...
end
end
end

然后可以将其传递给 meta.class.fromName 以解析元数据...


下面是这个 hack 的快速实现:

function [inputNames,outputNames] = getArgNames(functionFile)
%# get some random file name
fname = tempname;
[~,fname] = fileparts(fname);

%# read input function content as string
str = fileread(which(functionFile));

%# build a class containing that function source, and write it to file
fid = fopen([fname '.m'], 'w');
fprintf(fid, 'classdef %s; methods;\n %s\n end; end', fname, str);
fclose(fid);

%# terminating function definition with an end statement is not
%# always required, but now becomes required with classdef
missingEndErrMsg = 'An END might be missing, possibly matching CLASSDEF.';
c = checkcode([fname '.m']); %# run mlint code analyzer on file
if ismember(missingEndErrMsg,{c.message})
% append "end" keyword to class file
str = fileread([fname '.m']);
fid = fopen([fname '.m'], 'w');
fprintf(fid, '%s \n end', str);
fclose(fid);
end

%# refresh path to force MATLAB to detect new class
rehash

%# introspection (deal with cases of nested/sub-function)
m = meta.class.fromName(fname);
idx = find(ismember({m.MethodList.Name},functionFile));
inputNames = m.MethodList(idx).InputNames;
outputNames = m.MethodList(idx).OutputNames;

%# delete temp file when done
delete([fname '.m'])
end

并简单地运行为:

>> [in,out] = getArgNames('divide')
in =
'left'
'right'
out =
'value'
'remain'

关于matlab - 如何在 matlab 中检索函数参数的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10431577/

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