Why do I keep running into errors???
Show older comments
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
function linearinterp
x=linspace(-5, 2*pi, 30);
y=exp.^(-x./2).*sin(x^.2+8);
points=refine(0, 7, 0.1);
plot(x, y, points, f(points), 'r+');
hold on
plot(points, f(points));
hold off
end
2 Comments
Azzi Abdelmalek
on 11 Feb 2014
How are we supposed to know? no error message, no details about how you ran your two functions ...
Ehi Eromosele
on 12 Feb 2014
Accepted Answer
More Answers (1)
Image Analyst
on 12 Feb 2014
0 votes
exp.^(-x./2) is not proper. exp is a function, not the value "e", so it must be immediately followed by a left parenthesis: exp(-x/2). You do not need the dot before the slash because 2 is a scalar, not an array.
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!