How do i call a function inside another function?
조회 수: 124 (최근 30일)
이전 댓글 표시
i wrote 2 functions separately. in one of these functions, i need to call the other function inside it? how do i do that? Thanks :)
댓글 수: 0
답변 (2개)
KSSV
2016년 9월 3일
I am giving an example here. The below first function calls a seconds function to calculate the sum of three numbers.
function K = firstfunction(a,b,c)
L = secondfunction(b,c) ;
K = a+L ;
This is the second function which calculates sum of two numbers.
function L = secondfunction(b,c)
L = b+c ;
Call the first function in Main file/ matlab work space:
s = firstfunction(1,2,3) ;
댓글 수: 3
Jan
2018년 12월 18일
@Soumen Kuma Mondal: Try it. It is very cheap to run the shown code and to use the debugger to step throught the code line by line. Then you can see in the WorkspaceBrowser, which variables are existing.
You need the command global to make a variable global. Another method to share data is to created a nested function:
function K = firstfunction(a,b,c)
L = secondfunction(b,c) ;
K = a+L ;
function L = secondfunction(b,c)
L = b+c ;
disp(K)
end
end
Now secondFunction is visible inside the firstFunction only and e.g. K is existing inside secondFunction.
KSSV
2016년 9월 3일
simple....write the function (output = functionname(inputs)) inside the function you want...
참고 항목
카테고리
Help Center 및 File Exchange에서 Scope Variables and Generate Names에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!