If expression to check whether a particular function has been called

조회 수: 34 (최근 30일)
Tejas
Tejas 2020년 8월 6일
댓글: Tejas 2020년 8월 6일
What should I write in the expression for the 'if' statement when I want to check if the script has called a particular function, and if it has, then perform the calculations mentioned?
  댓글 수: 2
Roger J
Roger J 2020년 8월 6일
Maybe set a global variable (a flag) inside of the function. Like in foo() the first line can set fooHasBeenCalled=1
Then you can use
if fooHasBeenCalled==1
% code
end
Tejas
Tejas 2020년 8월 6일
That works for me. Thanks!

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

채택된 답변

Walter Roberson
Walter Roberson 2020년 8월 6일
In the general case, there is no way to detect whether a particular function has been called.
If you turn on profiling before you execute, then you can potentially examine the profile information to determine whether the function was called.
If the function happens to change state in a distinct way, such as creating a global variable, or opening a particular file, then you might be able to examine the program state to see if the function "must have been" called.
If the function is a .m file, then you could potentially put in a breakpoint in the file in order to determine whether the function was reached.
Usually the easiest way to deal with such matters is to create a flag variable that is initialized to false, with the program setting the flag to true immediately after calling the function. This requires the cooperation of the function.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by