統計
MATLAB Answers
2 質問
0 回答
ランク
of 176,414
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
Urgent, need help to complete newton raphson method script.
Trying to create a script to find the roots of a function using the newton raphosn method however i am stuck on the script. ...
9年以上 前 | 0 件の回答 | 0
0
回答質問
How do i remove the last V= line as it's not required?
function [ xvec ] = iteration(N); x(1)=1 ; for k=1:(N); x(k +1)=(x(k)/2) + 3/x(k); end xvec=x; disp('The...
9年以上 前 | 1 件の回答 | 0
