Le 19/05/2015 03:27, fujimoto2005 a écrit :
> When I use the function 'intg', I have an message "Too complex recursion!
> (recursion tables are full)" and the code stop to run.
> But the user-function for the ‘intg’ calls only two user functions with same
> level in it.
> How can I fix this problem?
> I already maximized the stack seize by stacksize('max').
The "Too complex recursion!" message has nothing to do with the stack
size. It is often due to a function which calls itself (directly or
indirectly) too deeply.
Does your user function calls 'intg'?Serge Steer > > > > -- > View this message in context: > http://mailinglists.scilab.org/Too-complex-recursion-tp4032303.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at > Nabble.com. > _______________________________________________ > users mailing list > [email protected] > http://lists.scilab.org/mailman/listinfo/users _______________________________________________ users mailing list [email protected] http://lists.scilab.org/mailman/listinfo/users
