Undefined function or variable 'x'. Why is there an error?

조회 수: 1 (최근 30일)
Ehi Eromosele
Ehi Eromosele 2014년 2월 12일
답변: Walter Roberson 2014년 2월 12일
%Undefined function or variable 'x'.
Error in linearinterp (line 2)
f=(exp(-x/2).*sin(x.^2+8));%
function linearinterp
%Error
f=(exp(-x/2).*sin(x.^2+8));
points = refine(0, 7, 0.6);
plot(points, f(points), 'r+');
hold on
plot(points, f(points));
hold off
end
function points = refine(x1, x2, tol)
xm = (x1+x2)/2;
if abs((f(x1)+f(x2))/2-f(xm))<tol
points=[x1,x2];
else
left=refine(x1, xm, tol);
right=refine(xm, x2, tol);
points=[left, right(2:length(right))];
end
end

채택된 답변

Walter Roberson
Walter Roberson 2014년 2월 12일
f = @(x) (exp(-x/2).*sin(x.^2+8));

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by