Execute a list of functions

조회 수: 26 (최근 30일)
Hg
Hg 2016년 11월 2일
댓글: Hg 2016년 11월 2일
How do I store a list of user-defined function in an array and execute it in a loop one by one?
[d] = func1(a),
[e] = func2(b),
[f] = func2(c) ...

채택된 답변

Walter Roberson
Walter Roberson 2016년 11월 2일
myfun = {@func1, @func2, @func2} ;
vars = {a, b, c};
for K = 1 : length(myfun)
result{K} = myfun{K}(vars{K});
end
  댓글 수: 1
Hg
Hg 2016년 11월 2일
Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2016년 11월 2일
편집: KSSV 2016년 11월 2일
myfun = {'func1','func2','func3'} ; % write function names in a cell
d = feval(myfun{1},a) ; % calls first function
e = feval(myfun{2},b) ; % calls second function
f = feval(myfun{3},c) ; % calls third function
doc feval.
  댓글 수: 1
Hg
Hg 2016년 11월 2일
This also works but Walter's answer is closer (regarding looping)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by