photo

Odhrán


Last seen: 7 months 前 自 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 months 前 | 2 个回答 | 0

2

个回答