how i can have dimension input of a defined function like f ?

조회 수: 2 (최근 30일)
xosro
xosro 2015년 7월 1일
답변: Walter Roberson 2015년 7월 2일
i have a code that input of its a handle function like f, in duration of this code i need to number of input this function for example f is: f=@(x,y)(x+y)

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 7월 1일
편집: Azzi Abdelmalek 2015년 7월 1일
f=@(x,y)(x+y)
s=func2str(f);
a=regexp(s,'(?<=@\()[\w,]+(?=\))','match')
out=numel(cell2mat(regexp(a,'\w+')))

추가 답변 (1개)

Walter Roberson
Walter Roberson 2015년 7월 2일
f = @(x,y)(x+y)
out = nargin(f)

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by