Why do I receive a "WARNING: Listener recursion limit exceeded." message in MATLAB?

1 view (last 30 days)
When I try to print my GUI in MATLAB 7.0.4 (R14SP2) on Windows 2000, I receive the following message:
WARNING: Listener recursion limit exceeded.
Listener execution has been terminated prematurely.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
This is a bug in the way the PRINT function in MATLAB can cause the maximum recursion limit to be exceeded.
However, some MATLAB users have been able to avoid this by increasing the recursion limit. You can increase the recursion limit from its default value of 500 to 750 using the following command:
set(0,'recursionlimit',750)

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products


Release

R14SP2

Community Treasure Hunt

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

Start Hunting!