Usage example for Halley related to Exercise 4.6
0001 % Usage example for Halley 0002 % related to Exercise 4.6 0003 0004 p = [ 1 1 0 -2]; 0005 initial = -0.5; 0006 tol = 1e-6; 0007 max = 100; 0008 [ x,k ] = Halley( p,initial,tol,max )