Question: 4) Implement the Secant method algorithm asa MATLAB function using the pseudocode provided below The inputs to the function should be the initial guessesxi and

4) Implement the Secant method algorithm asa MATLAB function using the pseudocode provided below The inputs to the function should be the initial guessesxi and x-1(xi and xim1), the approximation toleranoe (ss), the maximum iterations (imax), and a function handle (f) to hold the equation being investigated. The outputs should be the approximate root location (xr), the number ofiterations performed (iter), and the approximate percent relative error (sa). Confirm your function is working correctly by reproducing your results from the previou s problem. Do not forget to include both your MATLAB function and the required outputs when you print and submit your work. Function Secant(xi, xim1, es, imax, f, xr, iter, ea) iter - 0 DO f(xi)(xim1-xi) f(xim1)-f(xi) xt= X1- iter - iter 1 IF xr # 0 THEN xr x,I * 100 ea = END IF IF ea es 0R iter> imax EXIT. END IF xim1-xi END DO END Secant
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
