How can I run a code for a pre-defined time duration?
Mostrar comentarios más antiguos
Hi everyone, how can I execute a code only for a limited time duration?
The problem arises since I've a very large database, in which only few elements seem to enter infinite loops (either in function1 or in function2, as reported below); to be thorough, the problem occurs in function1 or function2 at level of fmincon or ode15s, respectively.
The idea would be to run the code for all elements and for those precise elements entering infinite loop to move onto the next element once the limit of time duration is reached.
The code I've implemented is like the following:
for i=1:NumElem
...
function1;
...
function2;
...
end
I've already tried to implement something like this:
for i=1:NumElem
tic
while toc<300
...
function1;
...
function2;
...
end
end
But with no results since infinite loops occur inside function1 or function2.
Thanks in advance!!
2 comentarios
Well, you'll have to (obviously?) make whatever changes you make inside your two functions and if it is ode15 or fmincon that are the actual functions in which the hangup occurs, you'll have to or use callbacks to create a deadman timer that interrupts the function.
I have an appointment right now but I think there are settable parameters in those that could be used to limit number of iterations for fmincon; I don't recall on ode routines otomh...
Mario Malic
el 10 de Jun. de 2021
MaxTime is the option for fmincon.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!