Community Profile

지민 이


Last seen: mer än 2 år ago Active since 2021

Followers: 0   Following: 0

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


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

mer än 2 år ago | 0 answers | 0

0

answers

Question


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

mer än 2 år ago | 1 answer | 0

1

answer