Is there any way to set time limit on a function?
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I would like to stop a function if it did not finish after a specific time. Is there any way to do it in MATLAB?
1 comentario
Jan
el 16 de Abr. de 2015
Please add the important detail to the body of the question, that you want to stop an external program and not a Matlab function. Hiding this detail in a comment to an answer is misleading.
Respuestas (3)
Sean de Wolski
el 15 de Abr. de 2015
Pass tic into the function and have it check toc periodically. If it exceeds, return or error.
0 comentarios
Adam
el 15 de Abr. de 2015
You can use tic toc.
doc tic
doc toc
Just run with a while loop, extracting the toc value into a variable and testing that it is less than your chosen time in the while loop.
You could also use a timer object, but tic toc is simpler in this case I would think.
2 comentarios
Adam
el 15 de Abr. de 2015
So you want that external program to be cancelled when the time limit is up? In that case I'm not familiar enough with calling external programs to know how to terminate them early.
If the program is interruptible then it may be possible with a timer object using a callback though I don't know what the instructions would be.
Jan
el 16 de Abr. de 2015
How do you want to stop the external function? Is it possible to stop it in a regular way or do you have to kill the process in the hard way? The second method might leave some partially written output files and other junk on your computer.
You can start the external function using system('Program.exe &') and wait the wanted time. The exact procedure depends on how the external function can show, that it has finished and on your operating system. So please add more details in the body of your question - posting this as a comment is not optimal for the readers.
0 comentarios
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!