Borrar filtros
Borrar filtros

recursive function causes matab to crash

5 visualizaciones (últimos 30 días)
H D
H D el 4 de Ag. de 2016
Respondida: Steven Lord el 4 de Ag. de 2016
I increased the recursion using set parameter but the recursive function cause matlab to crash using different input parameters. All the variables are defined as global to reduce data duplication in memory. Can any body help me to solve this issue?
  1 comentario
James Tursa
James Tursa el 4 de Ag. de 2016
We need to see your code. Define "crash" ... what actually happens exactly?

Iniciar sesión para comentar.

Respuestas (1)

Steven Lord
Steven Lord el 4 de Ag. de 2016
In earlier releases of MATLAB (I tried this in release R2014b) the error you received when you tried to perform recursion too many levels deep was:
Maximum recursion limit of 500 reached. Use set(0,'RecursionLimit',N) to
change the limit. Be aware that exceeding your available stack space can
crash MATLAB and/or your computer.
Sometime between then and now (release R2016a) it looks like we changed the message in at least some cases.
Out of memory. The likely cause is an infinite recursion within the program.
The best solution IMO is to avoid recursing that deeply. If you describe the problem you're trying to solve recursively, someone may be able to offer guidance on how to solve that using less recursion or no recursion at all.

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by