program that calls itself

조회 수: 15 (최근 30일)
Oluwa KuIse
Oluwa KuIse 2012년 2월 20일
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.

채택된 답변

Andrew Newell
Andrew Newell 2012년 2월 20일

추가 답변 (1개)

Walter Roberson
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

카테고리

Help CenterFile 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