photo

Odhrán


Last seen: 7 mois il y a Actif depuis 2023

Followers: 0   Following: 0

Statistiques

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


The code runs when if I do; newton_recur(@(x) x^2,@(x) 2*x,1,10) but wont work if I leave out the @(x). is there a way to do this so that the user doesn't need to add @(x)?
function x = newton_recur(f,df,x0,n) Xhist = 1:n; x = x0; for i = 1:n x = x - f(x)/df(x); Xhist(1,i) = x; end di...

9 mois il y a | 2 réponses | 0

2

réponses