필터 지우기
필터 지우기

Location of the "end" statement of the main function in a m. file?

조회 수: 1 (최근 30일)
Marek Gradzki
Marek Gradzki 2020년 8월 7일
댓글: Marek Gradzki 2020년 8월 7일
Hello,
could someone write what is the difference between possible location of the "end" statement of the main function: before first local function vs end of a file? What is the difference?
For example: first vs. second case in this answer.
Thank you!
Marek

채택된 답변

Stephen23
Stephen23 2020년 8월 7일
편집: Stephen23 2020년 8월 7일
"before first local function"
any functions defined after the main function are local functions:
"vs end of a file?"
any functions defined within the main function are nested functions:
These can be combined too, e.g.:
function mymain()
... code
function mynest()
... code
end % mynest()
end % mymain()
function mylocal()
... code
end % mylocal()
Nested functions have access to the parent function's workspace. Local functions do not.
  댓글 수: 1
Marek Gradzki
Marek Gradzki 2020년 8월 7일
Ok, right, thanks! So I guess the main difference is about access to the variables defined in the main function.

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

추가 답변 (1개)

Sudheer Bhimireddy
Sudheer Bhimireddy 2020년 8월 7일
If you have 'end' at the end of a file, then your functions become 'Nested functions'. The variables created inside the function and their scope changes.
Read this, this and this MATLAB documentation.
Hope this helps.
  댓글 수: 3
Bruno Luong
Bruno Luong 2020년 8월 7일
편집: Bruno Luong 2020년 8월 7일
function caller
a = 1;
function c = foo(d)
eval('b = d;'); % error "forbidden"
c = a + b;
end
function c = bar(d)
b = [];
eval('b = d;'); % OK
c = a + b;
end
fprintf('bar(2) = %g\n', bar(2));
fprintf('foo(2) = %g\n', foo(2)); % this won't run
end

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

카테고리

Help CenterFile Exchange에서 Variables에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by