photo

Malcolm Kevin


Last seen: 3年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

統計

Feeds

表示方法

質問


Newton Method Matlab code
function approximation = newtonsMethod( fnc, x0, delta ) maxnumIter = 100; n = 0; % Initialize iteration counter. syms fp;...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


How to write Newton method with exact number of iterations and see all digit ? for example if method is required to take exact 5 iterations of newton's method
Here is my code so far, I haven't set up the N yet function c = newton(x0, delta) format long e x0 = 5; delta = 10^-8; c =...

3年以上 前 | 1 件の回答 | 0

1

回答