統計
MATLAB Answers
5 質問
0 回答
ランク
of 171,061
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
How can I run this code for Fixed point iteration with given functions?
function x = FixedPtSys(G, x0, tol, maxit) disp([0 x0]); y = feval(G, x0); xnew = y'; % the next solu...
約10年 前 | 1 件の回答 | 0
1
回答質問
Can anybody help with this MatLab code for Inverse Power Method?
*I tried to run this one, but I think there is wrong answer on the command line. Here is my answer.* [z, mm] = Inv_Power(A, 10...
約10年 前 | 0 件の回答 | 0
0
回答質問
Question for Thomas Method for Numerical method.
I got the code for Thomas Method, but after run the program, the output is like this: >> d = [2 4 3 5]; a = [2 4 3 0]; ...
約10年 前 | 1 件の回答 | 0
1
回答質問
Secant Method executing error.
Can anybody help with this error? Thanks. error occured: Secant (line 1) [x, y] = Secant(inline('x + exp(-x^2)'), 0, 1, ...
10年以上 前 | 1 件の回答 | 0
1
回答質問
I got an error of my code. This code is Newton's method. Can anybody help with me?? Thank you!!
error occur: Newton (line 3) [x,y] = Newton(f, df, 0.5, 0.00001, 5); f = inline('x.^3-3*x.^2+4/3'); df = inline('3*...
10年以上 前 | 1 件の回答 | 0
