how to have indication of matlab function stopped

조회 수: 2 (최근 30일)
adi
adi 2020년 7월 5일
편집: dipak nigam 2020년 7월 5일
Hi,
is there a way to have an indication when matlab function stops?
lets say i have a function and i want to use another function in cases that the first one stopped/got stuck.
how can i do this?
thank you
  댓글 수: 2
John D'Errico
John D'Errico 2020년 7월 5일
What do you mean by stopped/got stuck?
Are you asking how to know when another function seems stuck in an infinite loop?
Are you asking to know when a function has terminated running due to some error condition?
adi
adi 2020년 7월 5일
hi,
yes i want to know when a function has terminated running due to some error condition.
actually i work with the matlab fit function and in some curves i get the error of not being able to fit, therefore in these cases i would like to fit with another function- so i would like to have this indication so the program wont terminate.
thank you

댓글을 달려면 로그인하십시오.

답변 (1개)

dipak nigam
dipak nigam 2020년 7월 5일
편집: dipak nigam 2020년 7월 5일
As per my understanding, you want to run another function if your present function raises an 'error' or 'fails'. You can put the statements prone to failure in a try block and call the other function in a catch block to achieve this functionality.
Here you can find the documentation for the same-
Otherwise, you can use the condition statements if your current function does not raise an error.
In the case your function just stops the execution and doesn't raises an error, i.e 'gets stuck' you can create a timer until the expected time-limit and then raise an exception/error yourself after that timer runs out. Try-catch statements can be used with timer to handle such cases.
You may get some idea here-

카테고리

Help CenterFile Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by