MATLAB won't run script unless functions are defined in a specific order?
조회 수: 31 (최근 30일)
이전 댓글 표시
Hello,
Not sure what the best way to word this would be as I'm still familiarizing myself with MATLAB. I'm trying to run a code that our professor asked us to use for a class project. Even though all the functions have been defined within the script, some of them are called on before their "instance" further down the script. Because of this, MATLAB gives me an error that the function is not defined. I think it might have to do with the version of MATLAB that I'm running or my settings, because when my professor runs the code on his computer, it works just fine. I don't mind reorganizing things to make it make more sense to my script, just wanted to know if there's a smarter way to do this without having to reorganize things because I don't want to risk messing up with the code. I'm not sure if this makes sense at all but please feel free to ask for clarification. I'd paste the code for an example but it's really long because it's a multiprocess code and posting batches wouldn't really make my question make sense. I'm running R2023b Thanks in advance!
댓글 수: 3
Stephen23
2024년 1월 31일
편집: Stephen23
2024년 1월 31일
"Function order doesn't matter in MATLAB."
It matters if they are anonymous functions or function handle definitions. The question does not specify if they are local functions or anonymous functions, which could make a difference.
fnh('hello world')
fnh = @disp;
참고 항목
카테고리
Help Center 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!