Bisection
bisect.m
Go to the documentation of this file.
1 %
2 
3 a = -1;
4 b = 2;
5 x = linspace(a,b,1000);
6 y = sin(x)-x/2;
7 plot(x,y,[a,b],[0,0])
8 title('sin(x)-x/2');
b
Definition: bisect.m:4
y
Definition: bisect.m:6
a
Definition: bisect.m:3
x
Definition: bisect.m:5
plot(x, y,[a, b],[0, 0]) title('sin(x) -x/2')