Question: can somebody please answer this question for me? includes using matlab 2.3 Bisection search 1. In Matlab, implement a function that performs a bisection search.
can somebody please answer this question for me? includes using matlab

2.3 Bisection search 1. In Matlab, implement a function that performs a bisection search. It should take the following parameters: 21 Homework 02: ICSI 401 - Numerical Methods - F: A function (assumed to be continuous) whose roots you want to find, - a: A floating point number giving the left endpoint of the initial interval in which you want to search for a root of F. - b: A floating point number giving the right endpoint of the initial interval. - delta: A non-negative floating point number giving the acceptable proximity of the output to a root of F. Your function should first check a and b to determine whether or not they satisfy the condition given by the Intermediate Value Theorem that allows us to conclude that [a,b] contains a root of F. If this condition is not satisfied, return NaN (Matlab for "Not a number"). If the condition is satisfied, your function should perform a bisection search until it finds a number z that it can guarantee satisfies xx
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
