MATLAB: I cant understand meaning of this comment . whenever i run program it show this msg. suggest any solution

bifurcationMATLAB

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.
Error in ==> ode45

Best Answer

You have a function that directly or indirectly calls itself. It did so 500 times without returning in your run. That usually means you have done this inadvertently in your code and you likely have a bug in your code (a forever recursion).