photo

Odhrán


Last seen: 7 mesi fa Attivo dal 2023

Followers: 0   Following: 0

Statistica

  • Thankful Level 1

Visualizza badge

Feeds

Visto da

Domanda


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 mesi fa | 2 risposte | 0

2

risposte