Error in bisection method code in Matlab
- by Amanda Collins
I need to write a proper implementation of the bisection method, which means I must address all possible user input errors. Here is my code:
function [x_sol, f_at_x_sol, N_iterations] = bisection(f, xn, xp, eps_f, eps_x)
% solving f(x)=0 with bisection method
% f is the function handle to the desired function,
% xn and xp are…