3) Apply the MATLAB built-in function [rootest, fval]=fzero (func, initial guess
ID: 3889289 • Letter: 3
Question
3) Apply the MATLAB built-in function [rootest, fval]=fzero (func, initial guess) to compute the roots for the following functions. This function runs a relatively stable algorithm that uses a combination of root-finding procedures discussed in class. a) In a script file, compute the root of f(x)-ex-1-1 using fzero with initial guesses x and xo 5+10-10. For each initial guess, show the values of rootest and fval, and use these to compute and show the forward and backward absolute errors for each initial guess, using the )enclosed by apostrophes. TheExplanation / Answer
classdef MyParticle properties velocity; end methods function p = MyParticle(x,y,z) p.velocity.x = x; p.velocity.y = y; p.velocity.z = z; end function disp(p) builtin('disp',p) % call builtin if isscalar(p) disp(' Velocity') disp([' x: ',num2str(p.velocity.x)]) disp([' y: ',num2str(p.velocity.y)]) disp([' z: ',num2str(p.velocity.z)]) end end end end