Increase Time Limit
10 seconds isn't enough. I would like an option to increase the command execution time limit.
Over the last month, the “Add 15 Seconds” button has been used over 10,000 times. Since this seems to be working for people, this can be considered a permanent feature. Thanks, everyone, for expressing your interest in a way to add more running time!
-
Rodrigo Espí commented
Any way to increase 10s limit? this limit is so low :(
-
Remus commented
I agree. I am doing simple math and a few simple plots with the result (hold on, because it's basically just one plot with details highlighted). All the math is done in a few seconds but i get out of time error due to the plots. 10 seconds is not enough
-
Mattias commented
I use it for iterative calculations and more time will increase the precision.
More time is a great idea!
Thanks!
-
Via Victorel Petrovich:
The 10 seconds for signed in users is not enough. I am working with the symbolic package, and here are some sample times. Note how elementary the computations are.
----------------------------------------------------------------------------------
octave:110> tic, [x, y ,z]=solve(x+y+z==6, x-y+z==2, x+2*y-z==2, x, y, z), toc
x = (sym)!!! OUT OF TIME !!!
1
y = (sym) 2
z = (sym) 3
Elapsed time is 10.021 seconds.octave:108> tic, [x, y ,z]=solve(x+y+z==6, x-y+z==2, x+2*y-z==2, x, y, z), toc
x = (sym) 1
y = (sym) 2
z = (sym) 3
Elapsed time is 8.73142 seconds.octave:93> tic, [x, y ,z]=solve(x+y+z==6, x-y+z==2, x+2*y-z==2, x, y, z), toc
!!! OUT OF TIME !!!
--------------------------------------------------------------------------------------In fact, just declaring some symbolic equations takes a lot of time:
---------------------------------------------------------------------------------------
octave:104> tic, e1=x+y+z==6, e2=x-y+z==2, e3=x+2*y-z==2, toc
e1 = (sym) x + y + z = 6
e2 = (sym) x - y + z = 2
e3 = (sym) x + 2⋅y - z = 2
Elapsed time is 8.5904 seconds.