Is there any way to set time limit on a function?

27 views (last 30 days)
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 Comment
Jan
Jan on 16 Apr 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.

Sign in to comment.

Answers (3)

Sean de Wolski
Sean de Wolski on 15 Apr 2015
Pass tic into the function and have it check toc periodically. If it exceeds, return or error.

Adam
Adam on 15 Apr 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 Comments
Mohammad Farshchin
Mohammad Farshchin on 15 Apr 2015
Thank you very much for your response but the problem is that, in my function I have a line that executes an external program. So the code has to wait until the external program returns something. So it is not possible to use tic and toc.
Adam
Adam on 15 Apr 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.

Sign in to comment.


Jan
Jan on 16 Apr 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.

Categories

Find more on Language Fundamentals in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!