photo

Odhrán


Last seen: 7ヶ月 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


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ヶ月 前 | 2 件の回答 | 0

2

回答