program that calls itself

7 visualizaciones (últimos 30 días)
Oluwa KuIse
Oluwa KuIse el 20 de Feb. de 2012
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.

Respuesta aceptada

Andrew Newell
Andrew Newell el 20 de Feb. de 2012

Más respuestas (1)

Walter Roberson
Walter Roberson el 20 de Feb. de 2012
Very simple example:
function x = foo(a,b)
if ~exist('b','var'); x = foo(a,0); return; end
x = a + b;
end

Categorías

Más información sobre Argument Definitions en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by