Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

B . Study the function code given and answer the questions that follow. function [ root , f x , e a , iter ]

B. Study the function code given and answer the questions that follow.
function [root,fx,ea,iter ] bisect (func,x1,xu, es, maxit, varargin)
If nargin3, error('at least 3 input arguments required'), end
test =func(x1,varargin{?)***func(xu,varargin{?);
if test>0, error ('no sign change'), end
If nargin4||isempty(es), es=0.0001; end
if nargin5||isempty(maxit), maxit=50; end
iter =0;r=1; ea =100;
while (1)
xrold=xr;
xr=xl+xu2;
iter = iter +1 ;
if xr=0, ea ?a=bs(xr-xroldxr)***100; end
test =func(xl,varargin{?)***func(xr,varargin{?);
if test 0
xu=xr;
elseif test >0
xl=xr;
else
ea=0;
end
if ea =es || iter >= maxit, break, end
end
x2=r;fx=func(xr,varargin{?);
What does this function?
Look up the MATLAB function varargin employed in the function script above. What is varargin and what is it used for?
What are the default values for es and maxit in the function call below?
>val=bisect( func ,xl,xu)
If line 14 is true, which interval is represented by line 15?
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions

Question

Explain the different types of marketing strategies.

Answered: 1 week ago

Question

Explain product positioning.

Answered: 1 week ago

Question

Explain Industrial market segment.

Answered: 1 week ago

Question

What are the Five Phases of SDLC? Explain each briefly.

Answered: 1 week ago

Question

How can Change Control Procedures manage Project Creep?

Answered: 1 week ago