Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function x = bisection(a, b, n)
- c = f(a);
- d = f(b);
- if c * d > 0
- error('The function has same sign on both the sides')
- end
- for i = 1 : n
- x = (a + b) / 2;
- if f(a) * f(x) < 0
- b = x;
- elseif f(b) * f(x) < 0
- a = x;
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement