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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 1 个回答 | 0
