How can I run a code for a pre-defined time duration?

1 visualizzazione (ultimi 30 giorni)
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 Commenti
dpb
dpb il 10 Giu 2021
Modificato: dpb il 10 Giu 2021
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...

Accedi per commentare.

Risposta accettata

Shadaab Siddiqie
Shadaab Siddiqie il 15 Giu 2021
From my understanding your functions are struck in infinite loop, and you want to stop this when it happens. You can resolve this using one of these ways:
  1. You can use different algorithms like 'interior-point' or 'sqp' algorithm. These algorithms have better safeguards against “Inf” and “NaN” values.
  2. You can set the "MaxSQPIter" property in the OPTIMSET function to a finite value. Ideally, it should be a multiple of the larger of the number of variables or number of constraints.
  3. You can use MaxIteration property of fmincon to stop the loop after certain number of iterations.

Più risposte (0)

Tag

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by