Error: File: Lab1.m Line: 81 Column: 1 Function definitions in a script must appear at the end of the file. Move all statements after the "f" function definition to before the first local function definition.

조회 수: 2 (최근 30일)
% Question 6:
% a)
g=@(x,y)(x.^4./y.^2)+cos(3*x.*exp(2*y))./(x.^5+6);
g(-7,-1)
% b
clear g
save(g.m)
function z=g(x,y)
z=(x^4/y^2)+cos(3*x*exp(2*y))/(x^5+6);
g(-7,-1)
end

답변 (1개)

Cris LaPierre
Cris LaPierre 2020년 9월 11일
What you have shared looks good, but you have not shared your full file (we do not see 81 lines, nor do we see a function f). As the error message states, and declared functions must be at the very bottom of your live script. I suspect there is at least a Question 7 that you have not included, meaning function z is not the last thing in your file.
See this documentation page for more on local functions.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by