photo

Yujun Sun


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

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...

6 years 前 | 0