Feeds
답변 있음
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...
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...
대략 7년 전 | 0
