program that calls itself

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.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2012년 2월 20일

0 개 추천

Very simple example:
function x = foo(a,b)
if ~exist('b','var'); x = foo(a,0); return; end
x = a + b;
end

카테고리

도움말 센터File Exchange에서 Adding custom doc에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by