Graph Method Root Finding

'X - 2^(-X) = 0'
how can I find the roots of this equation by using graphic method? fplot()

Respuestas (1)

James Tursa
James Tursa el 18 de Dic. de 2020
Editada: James Tursa el 18 de Dic. de 2020

0 votos

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.

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 9 de Abr. de 2020

Editada:

el 18 de Dic. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by