Local functions are not working in MatLab R2022a

조회 수: 36 (최근 30일)
Jonne Klockars
Jonne Klockars 2022년 6월 9일
편집: Walter Roberson 2024년 8월 27일
I'm trying to write local functions in the way instructed in this video: https://www.youtube.com/watch?v=f0zKcuP3Wc0&list=PLlvaivyRxHmdTvpNBe4gKWrOBrcuxhpsl&index=48, beginning at 5:50. When running the code below, my MatLab R2022a says Unrecognized function or variable 'mymean'. What am I missing here?
x = 1:10;
n = length(x);
avg = mymean(x,n)
function a = mymean(v,n)
a = sum(v)/n;
end
  댓글 수: 6
Stephen23
Stephen23 2022년 6월 9일
@Jonne Klockars: how are you running the script? Please show the exact code you use to run your file.
Jonne Klockars
Jonne Klockars 2022년 6월 9일
The exact code is in the question. I have nothing else in the file. I select it all and press F9.

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

채택된 답변

Stephen23
Stephen23 2022년 6월 9일
편집: Stephen23 2022년 6월 9일
"I select it all and press F9."
That will not work.
You need to run the script by calling it by name from the command line:
>> test
MATLAB is a bit more strict with function definitions than some younger languages around these days, where you can just define anything on the fly. Selecting function code and pressing F9 will not define the function and then let you call it. MATLAB simply does not work that way. You need to call the function or run the script that calls the function.
  댓글 수: 3
Jonne Klockars
Jonne Klockars 2022년 6월 9일
Also selecting the green play-symbol (Run) works. I watched the video series (link in question) before beginning the exercises and saw the instructor using F9. I'm quite sure she doesn't mention about the difference between it and Run / Command Line in any of the 60 videos.
Yu Li
Yu Li 2024년 8월 27일
some keyboard include a bottom "fn", when you accidently click that bottom, F9 not work. you need to press "fn" buttom agian to recover that.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by