recursive function causes matab to crash

2 ビュー (過去 30 日間)
H D
H D 2016 年 8 月 4 日
回答済み: Steven Lord 2016 年 8 月 4 日
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 件のコメント
James Tursa
James Tursa 2016 年 8 月 4 日
We need to see your code. Define "crash" ... what actually happens exactly?

サインインしてコメントする。

回答 (1 件)

Steven Lord
Steven Lord 2016 年 8 月 4 日
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.

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by