在MATLAB中迭代函数向量

时间:2011-04-14 20:46:02

标签: function matlab iteration

是否可以迭代MATLAB中的函数列表?我正在尝试测试不同的径向基函数,这似乎是最好的方法。

2 个答案:

答案 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)}