program that calls itself
조회 수: 15 (최근 30일)
이전 댓글 표시
How do I write a function file that calls itself without getting stuck in an infinite loop? I just want the program to call itself once.
댓글 수: 0
채택된 답변
추가 답변 (1개)
Walter Roberson
2012년 2월 20일
Very simple example:
function x = foo(a,b)
if ~exist('b','var'); x = foo(a,0); return; end
x = a + b;
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Adding custom doc에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!