how i can have dimension input of a defined function like f ?
2 ビュー (過去 30 日間)
古いコメントを表示
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)
0 件のコメント
採用された回答
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 件)
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!