Graph Method Root Finding
Mostra commenti meno recenti
'X - 2^(-X) = 0'
how can I find the roots of this equation by using graphic method? fplot()
1 Commento
darova
il 9 Apr 2020
What about plot?
Risposte (1)
James Tursa
il 18 Dic 2020
Modificato: James Tursa
il 18 Dic 2020
E.g.,
x = -1:0.01:1; % pick some x range to look for a root
plot(x,x-2.^(-x)) % plot the equation
grid on
or
fplot(@(x)x-2.^(-x));
grid on
Then zoom in on the 0 crossing.
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!