的內聯函數的變量數,我想編寫一個函數是這樣的:確定在Matlab
function foo(goo,...)
if(goo is a function of two variables)
% do something
else
% do something else
end
end
有沒有什麼方法可以讓我得到一個內聯函數的變量的數量(或匿名的功能?)。爲了更清楚:
f = inline('x + y')
g = inline('x')
我希望能夠分辨f是兩個變量的函數和g 1個可變
見['nargin'](http://www.mathworks.com/help/matlab/ref/na rgin.html)功能 – Dan