지민 이


Last seen: 2 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


use newton raphson method to find roots of exp(-x)-x
clear all; clc; n = 11; x = zeros(1,numel(n)); ea = zeros(1,numel(n)); g=@(x) exp(-x); f=@(x) exp(-x)-x; true_root=0.56...

3 years 前 | 0 个回答 | 0

0

个回答

提问


simple Fixed Point Iteration
clear all; clc; x(1)=0; g=@(x) exp(-x); f=@(x) exp(-x)-x; true_root=0.56714329; disp('--------------------------------...

3 years 前 | 1 个回答 | 0

1

个回答