Bisection MATLAB
Bisection MATLAB
clc
% Input Section
y = input('Enter non-linear equations: ');
a = input('Enter first guess: ');
b = input('Enter second guess: ');
e = input('Tolerable error: ');
m = input('Maximum iteration number :');