is_calledby(func_na​me)

版本 1.1.0.0 (1.9 KB) 作者: Dave Stanley
Returns 1 if the active function has a parent; else returns 0. Also tests for specific parent names.
93.0 次下载
更新时间 2015/6/23

查看许可证

out = is_calledby(func_name)
OVERVIEW
Tests identify of parent (calling) functions. Returns 1 if the active
function has a parent function calling it; else returns 0. Also tests
for specific parent names.
FORMS
[out] = is_calledby
[out] = is_calledby(func_name)
DESCRIPTION
[out] = is_calledby
Returns 1 if the active function has a parent; otherwise
returns 0.
[out] = is_calledby(func_name)
Returns 1 if the active function's parent matches func_name;
otherwise returns 0.

INPUTS
func_name - string indicating the name of a function. Set
func_name='*' to return 1 for being called by any function.

OUTPUTS
out - returns 1 or 0

EXAMPLES
Example 1
is_calledby % Returns 0

Example 2
% Drop this into a script called test1.m
function test1
is_calledby % Returns 0
fprintf('Should return 0 \n');

is_calledby('*') % Returns 0
fprintf('Should return 0 \n');
test2
end
function test2
is_calledby % Returns 1
fprintf('Should return 1 \n');

is_calledby('*') % Returns 1
fprintf('Should return 1 \n');

is_calledby('asdfasdf') % Returns 0
fprintf('Should return 0 \n');

is_calledby('test1') % Returns 1
fprintf('Should return 1 \n');
end
SEE ALSO
calledby
http://www.mathworks.com/matlabcentral/fileexchange/51281-calledby-depth-

引用格式

Dave Stanley (2024). is_calledby(func_name) (https://www.mathworks.com/matlabcentral/fileexchange/51280-is_calledby-func_name), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2007a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Test Scripts 的更多信息
标签 添加标签

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.1.0.0

Added link to partner function, calledby.m
Small improvement to documentation

1.0.0.0