photo

SEUNGMYEONG CHOO


自 2015 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

5 个提问
0 个回答

排名
154,760
of 300,779

声誉
0

贡献数
5 个提问
0 个回答

回答接受率
20.0%

收到投票数
0

排名
 of 21,084

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 170,997

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

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

1

个回答