Community Profile

photo

SEUNGMYEONG CHOO


Active since 2015

Followers: 0   Following: 0

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


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...

8 years ago | 1 answer | 0

1

answer

Question


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...

8 years ago | 0 answers | 0

0

answers

Question


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]; ...

8 years ago | 1 answer | 0

1

answer

Question


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, ...

8 years ago | 1 answer | 0

1

answer

Question


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*...

8 years ago | 1 answer | 0

1

answer