Community Profile

지민 이


Last seen: oltre 2 anni fa Attivo dal 2021

Statistiche

  • Thankful Level 1

Visualizza badge

Content Feed

Visto da

Domanda


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

oltre 2 anni fa | 0 risposte | 0

0

risposte

Domanda


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

oltre 2 anni fa | 1 risposta | 0

1

risposta