If expression to check whether a particular function has been called

34 次查看(过去 30 天)
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

请先登录,再进行评论。

采纳的回答

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