Syntax clarity on function

조회 수: 1 (최근 30일)
Deepayan Bhadra
Deepayan Bhadra 2020년 7월 17일
답변: Vimal Rathod 2020년 7월 23일
I have a script that goes like:
The script name is also ManageX. It doesn't look like there is any input or output. Why do we need this function here then, I wonder?
function ManageX
if
end
if
end
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 7월 18일
  • When you use a function instead of a script, there are more opportunities for optimization
  • When you use a script instead of a function, the entire workspace of the caller of the script is right there, and any changes you make to variables inside the script potentially affect the caller. The script needs to be careful not to accidentally affect the caller in ways the caller is not expecting

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

답변 (1개)

Vimal Rathod
Vimal Rathod 2020년 7월 23일
Hi,
You can have a look at some of the answers to this question link given below. There was a healthy discussion in the forum regarding this.

Community Treasure Hunt

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

Start Hunting!

Translated by