How do I call a function within another function?
Show older comments
How do you call a function within a function like
%filename: calculateA.m
function calculateA(arg1, arg2)
%calculations
function calculateB(arg1)
%calculations
end
%calculations
end
where you're trying to call calculateB(arg1) from say, the command window?
1 Comment
@Sterling Baird: your question shows some confusion. You ask "How do I call a function within another function?", but your example shows functions being defined. Calling a function and defining a function are two totally different things:
- Defining a function:
function y = myfun(x)
y = sin(x);
end
- Calling a function:
out = myfun(0.1);
Which of these do you actually want to ask about?
Accepted Answer
More Answers (2)
Jim Riggs
on 21 Jan 2019
0 votes
Your question is asking how to CALL a function from within another function, but your sample code is trying to DEFINE a function within another function. This you can't do. You define the functions in separate files:
%filename calculateA.m
function calculateA(arg1, arg2)
%calculations
..
[] = calculateB(arg) % you may call a function within a function simply by referencing it
% file calculateB.m must be in the Matlab path
end
separate file:
%filename calculateB.m
function calculateB(arg1)
% calculations
...
end
3 Comments
"but your sample code is trying to DEFINE a function within another function. This you can't do."
This you certainly can do:
"You define the functions in separate files:"
And even if they are not nested, local functions do not need to be defined in a separate file:
Jim Riggs
on 22 Jan 2019
It was my understanding that he wanted the function to also be callable from the Matlab command window. Isn't it true that nested functions are limited in scope?
David Goodmanson
on 23 Jan 2019
Hi Jim, yes they are limited. The the answer I posted is a means of retrieving the output of the nested function to provide an intermediate result, which seems reasonable. However, I had not quite realized the extent to which the OP wanted to both provide an independent input and retrieve the output of the the nested function. Doing both of those by way of extra input and output arguments of the main function does not seem like good programming practice, and at that point it would make more sense to have an independent function like you were talking about initially.
Yushuo
on 5 Jul 2022
You can just call directly witin one function, for example
disp(hahaha(5));
function A=hello(x)
A= 5*x;
end
function b=hahaha(tv)
b=hello(tv);
end
result will be 5
2 Comments
Steven Lord
on 5 Jul 2022
This works because you're writing functions in a script and calling those functions from the script (except it displays 25 instead of 5) but it would not work for the original question. If you put those two functions in a function file and try to call hahaha from the MATLAB prompt, MATLAB will error. Only the main function in a function file (the first one in the file) is directly callable by code outside that file.
That doesn't mean you can't indirectly call that function as long as the main function is willing to help. Consider this file:
function f = example440767
f = @localFunction;
end
function y = localFunction(x)
y = 3*x.^2;
end
If you were to call the main function in example440767.m with an output argument:
f = example440767
f would be a function handle to the local function. Because the main function in example440767 can "see" the local function localFunction inside its file, it can create a function handle that can be used to call that function like this. Note that this call is outside the file example440767.m and so localFunction is not directly callable (in scope) at this point.
>> f(5)
ans =
75
Categories
Find more on Whos 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!