Bisection
Loading...
Searching...
No Matches
bisect.m
Go to the documentation of this file.
1%
2
3a = -1;
4b = 2;
5x = linspace(a,b,1000);
6y = sin(x)-x/2;
7plot(x,y,[a,b],[0,0])
8title('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')