是否可以迭代MATLAB中的函数列表?我正在尝试测试不同的径向基函数,这似乎是最好的方法。
答案 0 :(得分:23)
您可以制作cell array function handles并对其进行迭代。例如:
vec = 1:5; % A sample vector of values
fcnList = {@max, @min, @mean}; % Functions to apply to the vector
nFcns = numel(fcnList); % Number of functions to evaluate
result = zeros(1, nFcns); % Variable to store the results
for iFcn = 1:nFcns
result(iFcn) = fcnList{iFcn}(vec); % Get the handle and evaluate it
end
答案 1 :(得分:8)
如果你想定义自己的功能,你可以这样做,继续gnovice的回答:
funcList = {@(x, y) (x - y), @(x, y) (x + y)}