Malcolm Kevin
Followers: 0 Following: 0
統計
MATLAB Answers
2 質問
0 回答
ランク
of 153,872
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
Newton Method Matlab code
function approximation = newtonsMethod( fnc, x0, delta ) maxnumIter = 100; n = 0; % Initialize iteration counter. syms fp;...
4年弱 前 | 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 =...
4年弱 前 | 1 件の回答 | 0