Community Profile

photo

Jammi


Last seen: 1 year 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计数据

  • Explorer
  • First Answer

查看徽章

Feeds

排序方式:

已回答
When I am doing Newton's Method with a tolerance, how do I only get the values up until it reaches the tolerance?
function myMain() tol = 1e-4; f = @(x) x^2 - 2; x0 = 1; xsol = myNewton(f, x0, tol); end function x = myNe...

1 year 前 | 0