Community Profile

photo

Jammi


Last seen: oltre un anno fa Attivo dal 2022

Followers: 0   Following: 0

Statistiche

  • Explorer
  • First Answer

Visualizza badge

Feeds

Visto da

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

oltre un anno fa | 0