Attempt to execute SCRIPT interp2 as a function:

조회 수: 3 (최근 30일)
Seyedeh Fardis
Seyedeh Fardis 2023년 9월 1일
댓글: John D'Errico 2023년 9월 2일
Hi,
I a trying to run a code while I get this error.
Attempt to execute SCRIPT interp2 as a function:
/Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2.m
Error in TMD_calculate (line 89)
D=interp2(X,Y,H',xt,yt);D=D';
while either there is no script and a function that both exist on this same path or there is not even a script of that overall.
I will be thankful if you let me know how I can solve that.
  댓글 수: 2
Stephen23
Stephen23 2023년 9월 1일
Please show us the output of this command:
which interp2 -all
Seyedeh Fardis
Seyedeh Fardis 2023년 9월 1일
which interp2.m -all
/Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2.m
/Applications/MATLAB_R2020a.app/toolbox/parallel/gpu/@gpuArray/interp2.m % gpuArray method

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

답변 (2개)

John D'Errico
John D'Errico 2023년 9월 1일
Did you mistakenly edit interp2, and then save it, after deleting the function header?
Are you POSITIVE there is no script by that name? What happens when you do this? I'm sorry, but I've seen the claim before, and it was pretty much always wrong.
which interp2 -all
Did you download something that has an interp2 script in it?
The point being, if MATLAB tells you interp2 is a script, then MATLAB sees a script by that name. However that script was created, there is something called interp2 on your path, and it is a script. MATLAB has no reason to lie in this.
  댓글 수: 2
Seyedeh Fardis
Seyedeh Fardis 2023년 9월 1일
which interp2.m -all
/Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2.m
/Applications/MATLAB_R2020a.app/toolbox/parallel/gpu/@gpuArray/interp2.m % gpuArray method
John D'Errico
John D'Errico 2023년 9월 2일
As I suspected from your comments, there is indeed a scripted version of interp2. Not an obvious one, but it was there after all. The point is, that error is impossible to arrive at, UNLESS there is a script named interp2.

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


Raymond Norris
Raymond Norris 2023년 9월 1일
Run
edit /Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2
and show us what the first couple of lines look like.
The error message
Attempt to execute SCRIPT interp2 as a function:
/Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2.m
tells us that MATLAB is trying to run /Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2.m, but sees it as a script.
  댓글 수: 8
Seyedeh Fardis
Seyedeh Fardis 2023년 9월 1일
which interp2
/Applications/MATLAB_R2020a.app/toolbox/matlab/polyfun/interp2.m
which -all pathdef
/Applications/MATLAB_R2020a.app/toolbox/local/pathdef.m
Raymond Norris
Raymond Norris 2023년 9월 1일
My guess is that at some point your code is changing directories, specifically to the location of where the old project code lives, and is finding your interp2 (which is why MATLAB isn't finding it with which -all -- since it's not really on the MATLAB path). The solution here is to rename your interp2 to something else.
Or you have added your project to the path (but then which -all should have found it). The solution here is to edit your path to no longer include it (HOME > Set Path. Select folder, then click Remove and Save).

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

카테고리

Help CenterFile Exchange에서 File Name Construction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by