photo

SEUNGMYEONG CHOO


Active since 2015

Followers: 0   Following: 0

Statistics

MATLAB Answers

5 Questions
0 Answers

RANK
154,760
of 300,779

REPUTATION
0

CONTRIBUTIONS
5 Questions
0 Answers

ANSWER ACCEPTANCE
20.0%

VOTES RECEIVED
0

RANK
 of 21,084

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,997

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

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

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

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

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

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

10 years ago | 1 answer | 0

1

answer