Community Profile

photo

Yujun Sun


Active since 2018

Statistics

  • First Answer

View badges

Content Feed

View by

Answered
How do I plot convergence in Newton's method to find square root?
function [sqrta,n] = newton1() a = 2; tol = 1e-15; n = 0; sqrta = a; sqrtaminus1 = a; axes %hold on while abs(sqrta^2...

5 years ago | 0