Newton's method - Wikipedia
https://en.wikipedia.org/wiki/Newton's_methodWhen dealing with complex functions, Newton's method can be directly applied to find their zeroes. Each zero has a basin of attraction in the complex plane, the set of all starting values that cause the method to converge to that particular zero. These sets can be mapped as in the image shown. For many complex functions, the boundaries of the basins of attraction are fractals.
Newtons method with two variables - MathWorks
www.mathworks.com › matlabcentral › answersMar 25, 2018 · So I'm trying to implement Newtons method to find the coordinates of an extremevalue for a function h, whose first and second partial derivates I've named f and g respectively. My code does not return the x and y-coordinates, and I believe the fault lies in my if-statement. Here's the code: if true. [x,y] = meshgrid (-3:0.1:3,-3:0.1:3);