필터 지우기
필터 지우기

Why is there arguments of type double?

조회 수: 1 (최근 30일)
Ehi Eromosele
Ehi Eromosele 2014년 2월 12일
댓글: Image Analyst 2014년 2월 12일
function linearinterp
x=linspace(-5, 2*pi, 30);
y=exp((-x./2).*sin(x.^2+8));
%Error in linearinterp (line 4) %points=refine(0, 7, 0.1);
points = refine(0, 7, 0.1);
plot(x, y, points, f(points), 'r+');
hold on
plot(points, f(points));
hold off
end
function points = refine(x1, x2, tol)
xm = (x1+x2)/2;
%Error in linearinterp>refine (line 12) %if abs((f(x1)+f(x2))/2-f(xm))<tol
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

답변 (1개)

Image Analyst
Image Analyst 2014년 2월 12일
Well, what is f? Is it somehow supposed to magically know what f is?
  댓글 수: 3
Ehi Eromosele
Ehi Eromosele 2014년 2월 12일
how do I get matlab to realize that? I've been trying everything.
Image Analyst
Image Analyst 2014년 2월 12일
Look up "anonymous function" in the help.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by